forked from ctrl-freaks/freezeframe.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
125 lines (125 loc) · 1.79 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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
@import url("http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,400,300,600,700");
body {
width: 502px;
margin: 20px auto 200px auto;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
color: #202020;
}
.bold {
font-weight: 700;
}
.italic {
font-style: italic;
}
.color {
color: orangered;
}
a {
color: inherit;
}
a:hover {
color: black;
}
h1,
h2,
h3 {
display: block;
padding: 0px;
}
h1 {
margin: 15px 0px;
}
h1.centered {
text-align: center;
}
h2 {
margin: 20px 0px 10px 0px;
color: orangered;
}
h3 {
margin: 10px 0px;
}
ol,
ul {
margin: 0px 0px 15px 0px;
padding: 0px;
font-weight: 700;
color: orangered;
}
ol li,
ul li {
margin: 0px;
padding: 0px;
}
ol li .disc,
ul li .disc {
list-style-type: disc;
color: orangered;
}
ol li p,
ul li p {
display: block;
margin: 0px;
padding: 0px;
font-weight: normal;
color: #202020;
}
ol li ol,
ul li ol,
ol li ul,
ul li ul {
margin: 0px 0px 0px 20px;
color: #202020;
}
ol li ul,
ul li ul {
list-style-type: circle;
}
span.note {
display: block;
margin: -10px 0px 15px 0px;
padding: 0px;
font-size: 11px;
}
span.note a {
color: inherit;
}
span.note a:hover {
color: black;
}
pre {
display: block;
margin: 0px 0px 15px 0px;
padding: 10px 15px;
border-radius: 2px;
background: #e8e8e8;
box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.3);
font-size: 12px;
color: #202020;
}
ul.variable {
margin-left: 0px;
list-style-type: none;
}
ul.variable li {
display: block;
margin: 0px 0px 5px 0px;
padding: 0px;
}
ul.variable li span.attribute {
display: block;
width: 90px;
height: 100%;
float: left;
font-weight: normal;
color: #999999;
}
ul.variable li span.type {
font-size: 11px;
}
ul.variable li p {
display: block;
margin: 0px 0px 0px 90px;
padding: 0px;
}