mirror of
https://github.com/Brandon-Rozek/website-theme.git
synced 2025-10-11 02:51:12 +00:00
Add auto dark theme
This commit is contained in:
parent
fa8ad522cc
commit
661d436540
4 changed files with 210 additions and 2 deletions
48
assets/css/style-dark.css
Normal file
48
assets/css/style-dark.css
Normal file
|
@ -0,0 +1,48 @@
|
|||
/* General */
|
||||
body {
|
||||
background-color: #101010;
|
||||
color: #8f8f8f;
|
||||
}
|
||||
|
||||
a:link {
|
||||
color: #8f8f8f;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: #8f8f8f;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #8f8f8f;
|
||||
}
|
||||
|
||||
a:active {
|
||||
color: #8f8f8f;
|
||||
}
|
||||
|
||||
#searchBox #searchBoxInput {
|
||||
color: #8f8f8f;
|
||||
background-color:#363636;
|
||||
border: solid 1px #363636;
|
||||
}
|
||||
|
||||
#searchBox #searchBoxInput::placeholder {
|
||||
color: #363636;
|
||||
}
|
||||
|
||||
#searchResults {
|
||||
background-color:#363636;
|
||||
border: solid 1px #363636;
|
||||
}
|
||||
|
||||
#searchResults mark {
|
||||
background-color: #222020;
|
||||
}
|
||||
|
||||
#tags li a {
|
||||
background-color: #222020;
|
||||
}
|
||||
|
||||
#contentsList hr.separator {
|
||||
border: solid 1px #363636;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue