forked from computeranonymous/computer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
82 lines (70 loc) · 1.15 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
body {
font-size: 130%;
font-family: monospace;
}
.accessibility-menu{
float:right;
line-height:130%;
}
.accessibility-menu .bow{
display:none;
color:black!important;
background-color:white;
padding:0.2em;
}
.accessibility-menu .wob{
color:white;
background-color:black;
padding:0.2em;
}
#accessibility:target, #accessibility.inverted {
color:white;
background-color:black;
}
#accessibility:target a, #accessibility.inverted a {
color:white;
}
#accessibility:target .wob, #accessibility.inverted .wob {
display:none;
}
#accessibility:target .bow, #accessibility.inverted .bow {
display:inline;
}
section {
max-width: 50em;
margin: 2em auto;
padding: 0 10px;
}
section#license {
border-top: dashed 1px black;
}
h1, h2, h3, h4, h5, h6 {
font-size: 100%;
}
h4 {
margin-top: 2em;
}
ul {
padding-left: 0;
}
li {
list-style-type: none;
line-height: 1.5;
}
ul.rules > li {
line-height: 1.8;
}
ul.groups > li {
font-weight: bold;
margin-top: 1em;
margin-bottom: 0.5em;
}
ul.groups li li {
font-weight: normal;
}
ul li::before {
content : '- ';
}
ul.groups li::before {
content: '';
}