-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyle.css
115 lines (113 loc) · 1.41 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
/**
* Generic elements.
*/
body {
color: #000;
background: #fff;
font: normal 81.3%/1.538em "Lucida Grande", "Lucida Sans Unicode", sans-serif;
}
a {
color: #0074BD;
text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: bold;
margin: 10px 0;
}
h1 {
font-size: 1.538em;
}
h2 {
font-size: 1.385em;
}
h3 {
font-size: 1.231em;
}
h4 {
font-size: 1.154em;
}
h5,
h6 {
font-size: 1.077em;
}
p {
margin: 1em 0;
}
s,
strike,
del {
text-decoration: line-through;
}
big {
font-size: larger;
}
small {
font-size: smaller;
}
sub {
vertical-align: sub;
font-size: smaller;
line-height: normal;
}
sup {
vertical-align: super;
font-size: smaller;
line-height: normal;
}
quote,
code {
margin: .5em 0;
}
code,
pre,
kbd {
font-size: 1.231em;
}
pre {
margin: 0.5em 0;
white-space: pre-wrap;
}
/**
* Tables.
*/
table {
font-size: 0.923em;
margin: 0 0 10px;
border: 1px solid #bebfb9;
color: #000;
background: #e1e2dc;
font-weight: normal;
}
table tr.notice {
color: #228B22;
}
table tr.warning {
color: #FFFF00;
background: #696969;
}
table tr.error {
color: #FF0000;
font-weight: bold;
}
table td,
table th {
vertical-align: middle;
padding: 2px 4px;
border-width: 1px;
border-style: solid;
border-spacing: 0px;
border-color: #bebfb9;
border-collapse:collapse;
}
table th {
font-weight: bold;
}
table th a {
display: block;
position: relative;
}