forked from gsmaverick/graf-spec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
125 lines (104 loc) · 1.66 KB
/
main.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
/*
* Styling the basics we used everywhere
*/
b { font-weight: bold; }
.clear { clear: both; }
h1 { font-size: 2.2em; font-weight: bold; }
h2 { font-size: 1.7em; font-weight: bold; }
body {
background-color: #FFFFFF;
color: #000000;
font-size: 62.5%;
font-family: Helvetica, Arial, sans-serif;
line-height: 1.5;
float: none;
display: block;
margin: 3px 8px;
}
#container {
max-width: 960px;
position: relative;
}
.title {
border-top: 1px solid #36C;
background-color: #E5ECF9;
padding-left: 5px;
padding-top: 2px;
}
.inline {
margin-left: 15px;
margin-bottom: 5px;
}
.code, pre {
font-family: monospace;
color: #007000;
font-size: 10pt;
display: inline;
}
p.text {
font-size: 1.3em;
margin-top: 10px;
margin-left: 15px;
margin-right: 15px;
margin-bottom: 10px;
}
.back {
margin-bottom: 15px;
display: block;
font-size: 1.2em;
}
ol.toc {
margin-top: 10px;
margin-left: 15px;
margin-bottom: 20px;
font-size: 1.3em;
}
ol.toc li {
padding: 2px;
margin-bottom: 5px;
}
ol.toc li a {
font-weight: bold;
}
ul {
font-size: 1.3em;
list-style-type: disc;
margin-left: 45px;
margin-bottom: 10px;
}
ul.sub {
font-size: 1em;
list-style-type: circle;
}
table {
margin-left: 15px;
margin-bottom: 15px;
width: 945px;
font-size: 1.3em;
border: 1px solid #BBB;
}
table td {
border: 1px solid #BBB;
padding: 6px 12px;
}
tr.top {
font-weight: bold;
background-color: #E5ECF9;
}
table.sub {
font-size: 1em;
width: 300px;
margin-left: 0px;
}
.note {
background-color: #EFEFEF;
border-top: 1px solid;
border-bottom: 1px solid;
border-color: #BBB;
padding: 3px;
margin-top: 5px;
margin-bottom: 5px;
}
a.sub {
font-weight: normal !important;
}