-
Notifications
You must be signed in to change notification settings - Fork 51
/
about.css
93 lines (73 loc) · 1.17 KB
/
about.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
body {
font-size: 18px;
font-family: 'UniversElseRegular', Arial, sans-serif;
margin: 0;
padding: 0;
background-image: url(gray_texture.jpg);
background-repeat: repeat;
}
a {
color: black;
}
a:hover {
color: #3b185f;
background: #f9f8fa;
}
h1, h2, h3, h4, h5, h6 {
font-weight: normal;
color: #222;
}
h1 a, h2 a, h3 a, h4 a,
h5 a, h6 a {
text-decoration: none;
}
h1 a:hover, h2 a:hover,
h3 a:hover, h4 a:hover {
color: #432165;
text-decoration: underline;
}
h1.title {
width: 560px;
}
h1, h2 {
margin: 10px 0 25px 0;
}
h1 {
font-size: 48px;
line-height: 52px;
}
h2 {
font-size: 36px;
line-height: 40px;
}
p, div.line-block, ul, ol, pre,
table {
margin: 25px 0 25px 0;
}
dt {
margin: 25px 0 16px 0;
padding: 0;
}
dd {
margin: 16px 0 25px 40px;
padding: 0;
}
ul ol, ol ul, ul ul, ol ol {
margin: 10px 0;
padding: 0 0 0 40px;
}
li {
padding: 0;
}
h1 + p.date {
margin-top: -28px;
font-style: italic;
}
#container {
width: 960px;
margin: 10px auto;
background-color: #D3D3D3;
border-radius: 20px;
border: 3px solid gray;
padding: 20px;
}