Initial commit
This commit is contained in:
commit
5365d8b34a
26 changed files with 1499 additions and 0 deletions
67
includes/light.css
Executable file
67
includes/light.css
Executable file
|
|
@ -0,0 +1,67 @@
|
|||
/* Light mode */
|
||||
@media (prefers-color-scheme:light) {
|
||||
body {
|
||||
background-color: #AAAAAA;
|
||||
color: black;
|
||||
}
|
||||
|
||||
h1, h2, h3 {
|
||||
color: black;
|
||||
}
|
||||
|
||||
header {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
main {
|
||||
color: black;
|
||||
}
|
||||
|
||||
.menu {
|
||||
color: black;
|
||||
}
|
||||
|
||||
.menu * {
|
||||
color: black;
|
||||
}
|
||||
|
||||
li a {
|
||||
color: black;
|
||||
}
|
||||
|
||||
li a:hover {
|
||||
color: #CC99FF;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
li a:visited {
|
||||
|
||||
/*color: blue;*/
|
||||
}
|
||||
|
||||
.content {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
main p {
|
||||
color: black;
|
||||
}
|
||||
|
||||
main a, footer a {
|
||||
color: black;
|
||||
}
|
||||
|
||||
main a:hover, footer a:hover {
|
||||
color: black;
|
||||
}
|
||||
|
||||
section {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
footer {
|
||||
background-color: white;
|
||||
color: black;
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Reference in a new issue