Moved css, js files from includes to assets.

This commit is contained in:
Gitea
2020-02-06 17:33:58 -05:00
parent 0d798846b0
commit 5443d91f86
11 changed files with 145 additions and 59 deletions

49
assets/css/dark.css Executable file
View 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;
}
}