This commit is contained in:
bobbydigitales
2024-10-07 00:24:22 -07:00
parent 2236ff0e6d
commit ac6846613a
7 changed files with 252 additions and 102 deletions

View File

@@ -1,12 +1,31 @@
@media (prefers-reduced-motion) {
/* styles to apply if a user's device settings are set to reduced motion */
}
:root {
--main-bg-color: black;
--main-bg-color: white;
--border-color:rgb(132,136,138);
--edge-color:rgb(60,60,60);
--main-fg-color:rgb(202,208,211);
--main-fg-color:black;
--highlight-fg-color:rgb(255,255,255);
--link-color:rgb(29, 155, 240);
}
@media (prefers-color-scheme: dark) {
:root {
--main-bg-color: black;
--border-color:rgb(132,136,138);
--edge-color:rgb(60,60,60);
--main-fg-color:rgb(202,208,211);
--highlight-fg-color:rgb(255,255,255);
--link-color:rgb(29, 155, 240);
}
}
body {
font-family: sans-serif;
@@ -150,4 +169,8 @@ iframe {
.qrcode_image {
background-color: var(--highlight-fg-color);
padding: 10px;
}
#ids {
font-size:xx-small;
}