More work on dark mode clean up. Wrapping up for the week. Happy almost birthday me.

This commit is contained in:
Scott Idem
2025-08-08 17:49:58 -04:00
parent b95111503d
commit 7ef18ce105
7 changed files with 62 additions and 21 deletions

View File

@@ -879,23 +879,56 @@ img.qr_code:focus {
/* BEGIN: Overrides and fixes specific to Novi and IDAA */
.iframe .novi_btn {
border-radius: 60px;
border-color: hsla(0, 0%, 50%, .5);
/* border-color: hsla(0, 0%, 50%, .5); */
/* border-color: hsla(0, 0%, 0%, .15); */
}
.iframe .novi_label {
.iframe .dark .novi_label {
color: white;
}
.iframe .novi_black {
.iframe .dark .novi_black {
color: black;
}
.iframe .novi_white {
.iframe .dark .novi_white {
color: white;
}
.iframe .dark .novi_bg_black {
background-color: black;
}
.iframe .dark .novi_bg_white {
background-color: white;
}
.iframe .dark .novi_bg_gray {
background-color: hsla(0, 0%, 50%, 1);
}
.iframe .dark .novi_bg_light_gray {
background-color: hsla(0, 0%, 95%, 1);
}
.iframe .dark .novi_bg_dark_gray {
background-color: hsla(0, 0%, 20%, 1);
}
.iframe .novi_bg_light {
background-color: hsla(0, 0%, 0%, .15);
color: hsla(0, 0%, 20%, 1);
}
.iframe .novi_bg_dark {
background-color: hsla(0, 0%, 0%, .25);
color: hsla(0, 0%, 95%, 1);
}
.iframe .novi_margin_sm {
/* margin: 0.5em; */
}