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 {
|
||||
color: #000;
|
||||
background-color: #fff;
|
||||
color: white;
|
||||
background-color: #151515;
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
|
@ -21,10 +21,19 @@ a:target {
|
|||
background-color: #ccc;
|
||||
}
|
||||
|
||||
a {
|
||||
color: lightblue;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: gray;
|
||||
}
|
||||
|
||||
a.d,
|
||||
a.h,
|
||||
a.i,
|
||||
a.line {
|
||||
color: red;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
@ -33,7 +42,7 @@ a.line {
|
|||
}
|
||||
|
||||
#blob a:hover {
|
||||
color: blue;
|
||||
color: lightblue;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
@ -55,7 +64,7 @@ table td {
|
|||
#index tr:hover td,
|
||||
#log tr:hover td,
|
||||
#files tr:hover td {
|
||||
background-color: #eee;
|
||||
background-color: #222;
|
||||
}
|
||||
|
||||
#index tr td:nth-child(2),
|
||||
|
@ -70,7 +79,7 @@ td.num {
|
|||
}
|
||||
|
||||
.desc {
|
||||
color: #777;
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
hr {
|
||||
|
@ -84,7 +93,7 @@ pre {
|
|||
}
|
||||
|
||||
pre a.h {
|
||||
color: #00a;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.A,
|
||||
|
|
Reference in a new issue