Use CSS media block for dark theme
Moved CSS dark theme rules into a media dark theme to automatically use it if the user device is configured to prioritize dark themes.
This commit is contained in:
parent
5e40e44cc8
commit
ba5dba9664
|
@ -144,6 +144,7 @@ p {
|
||||||
/**************/
|
/**************/
|
||||||
/* Dark theme */
|
/* Dark theme */
|
||||||
/**************/
|
/**************/
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
body {
|
body {
|
||||||
background-color: #222;
|
background-color: #222;
|
||||||
color: #ddd;
|
color: #ddd;
|
||||||
|
@ -178,6 +179,7 @@ header a:visited {
|
||||||
color: black;
|
color: black;
|
||||||
background: linear-gradient(to top, rgb(238, 112, 0), rgb(255, 178, 30));
|
background: linear-gradient(to top, rgb(238, 112, 0), rgb(255, 178, 30));
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 768px) {
|
@media screen and (max-width: 768px) {
|
||||||
#menu-default {
|
#menu-default {
|
||||||
|
|
Loading…
Reference in New Issue