1
Fork 0
mirror of https://github.com/RGBCube/Site synced 2025-07-30 12:37:50 +00:00

css: style details

This commit is contained in:
RGBCube 2025-07-11 23:41:49 +03:00
parent 6f112dd0cd
commit ad7e1a12c1
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M

View file

@ -311,8 +311,16 @@ body {
}
blockquote {
@apply border-1 p-2 bg-[#eee] shadow-[4px_4px_#444] dark:border-white
dark:bg-[#111] dark:shadow-[4px_4px_#bbb];
@apply border-1 border-black dark:border-white p-2 bg-[#eee]
shadow-[4px_4px_#444] dark:bg-[#111] dark:shadow-[4px_4px_#bbb];
}
details {
& > summary {
@apply inline-block border-4 border-double border-[red]
hover:border-[maroon] dark:border-[yellow] dark:hover:border-[goldenrod]
p-4 cursor-pointer;
}
}
.callout {