git.wh0rd.org
/
nano-editor.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
lowercase a bunch of attribute names plus some tags, for esthetics
[nano-editor.git]
/
style-dark.css
1
/*
2
* The dark style when user prefers that in their browser/OS.
3
*/
4
5
body
{
6
color
:
#cc88ff
;
7
background-color
:
#111
;
8
}
9
.inverted
{
10
color
:
white
;
11
background-color
:
#9200ff
;
12
}
13
14
a
{
15
color
:
#cc88ff
;
16
}
17
a
:
visited
{
18
color
:
#bb77ff
;
19
}
20
a
:
active
{
21
color
:
#FF0000
;
22
}
23
24
.inverted a
{
25
color
:
white
;
26
}
27
28
* {
29
box-sizing
:
border-box
;
30
}
31
32
.onecolumn
{
33
float
:
left
;
34
width
:
45
%;
35
padding
:
5
%;
36
}