back

how to: if there's css, paste it into the <style>paste here</style> brackets at the top of your slug.

wavy underline

css
.wavy {
text-decoration: underline;
text-decoration-style: wavy;
}

html
<u class="wavy"></u>

details

html
<details align="left"><summary style="color:black;""font-size: 0px;" class="mb8">details</summary><p>

details dropdown image ; the image for the bullet point when you open it

css
details summary::before {
content:url(image link when it's closed);
}


details summary::before {
content:url(image link when it's open);
}

link italics on hover

css
a:hover {
text-decoration: none;
font-style: italic ;
}

basic scrollbox

html
<div style="height:sizepx; width:sizepx; overflow:scroll; border: solid; border-width; sizepx border-color: black padding:10px">
leaving the height/width as "sizepx" will make it automatically fit the container

wip :) i recommend you look at the code section of my oomf eyra's resource rentry, /aquacodes for the time being!

Edit
Pub: 2025-08-02 23:29 UTCEdit: 2025-08-15 09:47 UTCViews: 30