-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspec.css
More file actions
108 lines (88 loc) · 1.58 KB
/
spec.css
File metadata and controls
108 lines (88 loc) · 1.58 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
pre {
background: #f7f7f7;
font-family: 'Roboto Mono', monospace;
/*font-size: 13px;*/
font-size: 14px;
line-height: 18px;
padding:20px;
}
.spec h1 {
margin: 48px 0px 22px 0px;
font-size: 24px;
border-top:1px solid #EEE;
padding-top: 48px;
counter-increment: counter1;
counter-reset: counter2;
}
.spec h1:before {
display: inline-block;
content: counters(counter1, ".") " ";
margin-right:10px;
}
h2 {
margin: 48px 0px 22px 0px;
font-size: 22px;
counter-increment: counter2;
counter-reset: counter3
}
h2:before {
display:inline-block;
content: counters(counter1, ".") "." counters(counter2, ".") " ";
margin-right:10px;
line-height: 34px;
vertical-align: middle;
}
h3 {
margin: 24px 0px 20px 0px;
font-size: 18px;
}
h3:before {
display:inline-block;
counter-increment: counter3;
content: counters(counter1, ".") "." counters(counter2, ".") "." counters(counter3, ".") " ";
margin-right:10px;
line-height: 34px;
vertical-align: middle;
}
h3 code {
font-family: 'Roboto Mono', monospace;
font-size: 100%;
color: orangered;
}
p {
margin: 24px 0px;
line-height: 22px;
}
p em {
font-style: italic;
font-size: 16px;
}
p > code {
font-family: 'Roboto Mono', monospace;
font-size: 100%;
color: orangered;
}
p a, p a:visited {
color: #034575;
}
.spec ul {
list-style-type: disc;
margin-left: 40px;
}
.spec ul li {
line-height: 22px;
}
.spec dl {
}
.spec dt {
font-weight: bold;
}
.spec dd {
margin-top: 5px;
margin-bottom: 25px;
line-height:18px;
}
.spec dd a {
font-style: italic;
color: #0000EE;
}