Moved css, js files from includes to assets.
This commit is contained in:
parent
5365d8b34a
commit
7473506141
11 changed files with 145 additions and 59 deletions
49
assets/css/dark.css
Executable file
49
assets/css/dark.css
Executable file
|
|
@ -0,0 +1,49 @@
|
|||
/* Dark mode */
|
||||
@media (prefers-color-scheme:dark) {
|
||||
body {
|
||||
background-color: #2d383e;
|
||||
}
|
||||
|
||||
h1, h2, h3 {
|
||||
color: white;
|
||||
}
|
||||
|
||||
header {
|
||||
background-color: #182329;
|
||||
}
|
||||
|
||||
main {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.menu {
|
||||
color: white;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #CC99FF;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: white;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.content {
|
||||
background-color: #182329;
|
||||
}
|
||||
|
||||
main p {
|
||||
color: #C8C8C8;
|
||||
}
|
||||
|
||||
section {
|
||||
background-color: #182329;
|
||||
}
|
||||
|
||||
footer {
|
||||
background-color: #182329;
|
||||
color: #C8C8C8;
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Reference in a new issue