-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
130 lines (109 loc) · 2.08 KB
/
styles.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
126
127
128
129
130
body {
font-family: helvetica, arial, 'lucida grande', 'hiragino kaku gothic pro', meiryo, 'ms pgothic', sans-serif;
line-height: 26px;
width: 760px;
margin: 0px auto;
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
-ms-font-smoothing: antialiased;
-o-font-smoothing: antialiased;
font-weight: 120;
letter-spacing: 0.1em;
line-height: 1.7em;
color: #323232;
}
h1 {
border-bottom: 2px solid #cdf;
font-size: 24px;
font-weight: normal;
margin-bottom: 12px;
padding-bottom: 6px;
padding-top: 8px;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
h2 {
border-bottom: 1px solid #cdf;
font-size: 20px;
font-weight: normal;
margin-bottom: 8px;
padding-bottom: 3px;
padding-top: 8px;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
h3, h4, h5, h6 {
font-size: 17px;
font-weight: normal;
margin-bottom: 6px;
padding-bottom: 6px;
padding-top: 8px;
text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
code {
background: #f0f9ff;
border: 1px solid #e0e9ff;
white-space: pre;
padding: 5px;
color: #036;
}
pre {
background: #f0f9ff;
border: 1px solid #e0e9ff;
white-space: pre;
padding: 5px;
border-radius: 4px;
}
pre code {
border: 0px solid #e0e9ff;
padding: 0px;
}
blockquote {
padding: 0px 10px;
color: #789;
border-left: 4px solid #dde;
font-size: 80%;
}
table {
border-collapse: collapse;
}
th {
border: solid 1px #ccc;
background: #f0f9ff;
color: #666;
}
td {
border: solid 1px #ddd;
}
th, td {
padding: 4px;
}
.note {
background: #f0f9ff;
border: none;
padding: 9px;
border-radius: 4px;
font-size: 14px;
box-shadow: 3px 3px 0 rgba(8, 1, 2, 0.03);
}
footer {
text-align: center;
}
form {
padding: 10px;
}
a {
color: #337ab7;
text-decoration: none;
}
a:hover {
color: #23527c;
text-decoration: underline;
}
/* */
li > a {
color: #111;
text-decoration: none;
}
li > a:hover {
color: #14c;
text-decoration: underline;
}