Dark themed style
This commit is contained in:
parent
898664d7b3
commit
944c0cd3fa
1 changed files with 15 additions and 6 deletions
21
style.css
21
style.css
|
@ -1,6 +1,6 @@
|
||||||
body {
|
body {
|
||||||
color: #000;
|
color: white;
|
||||||
background-color: #fff;
|
background-color: #151515;
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -21,10 +21,19 @@ a:target {
|
||||||
background-color: #ccc;
|
background-color: #ccc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: lightblue;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:visited {
|
||||||
|
color: gray;
|
||||||
|
}
|
||||||
|
|
||||||
a.d,
|
a.d,
|
||||||
a.h,
|
a.h,
|
||||||
a.i,
|
a.i,
|
||||||
a.line {
|
a.line {
|
||||||
|
color: red;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -33,7 +42,7 @@ a.line {
|
||||||
}
|
}
|
||||||
|
|
||||||
#blob a:hover {
|
#blob a:hover {
|
||||||
color: blue;
|
color: lightblue;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -55,7 +64,7 @@ table td {
|
||||||
#index tr:hover td,
|
#index tr:hover td,
|
||||||
#log tr:hover td,
|
#log tr:hover td,
|
||||||
#files tr:hover td {
|
#files tr:hover td {
|
||||||
background-color: #eee;
|
background-color: #222;
|
||||||
}
|
}
|
||||||
|
|
||||||
#index tr td:nth-child(2),
|
#index tr td:nth-child(2),
|
||||||
|
@ -70,7 +79,7 @@ td.num {
|
||||||
}
|
}
|
||||||
|
|
||||||
.desc {
|
.desc {
|
||||||
color: #777;
|
color: #eee;
|
||||||
}
|
}
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
|
@ -84,7 +93,7 @@ pre {
|
||||||
}
|
}
|
||||||
|
|
||||||
pre a.h {
|
pre a.h {
|
||||||
color: #00a;
|
color: #888;
|
||||||
}
|
}
|
||||||
|
|
||||||
.A,
|
.A,
|
||||||
|
|
Reference in a new issue