-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (89 loc) · 1.57 KB
/
style.css
File metadata and controls
106 lines (89 loc) · 1.57 KB
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
body {
margin: 0px;
font-family: 'Noto Serif', serif;
}
/* ========== */
#menu {
background-color: #E70079;
background: radial-gradient(ellipse farthest-corner at 470px -12px, #FF3388 0%, #E70079 80%);
box-shadow: 0 1px 2px rgba(0,0,0,0.75);
overflow: hidden;
}
#menu ul
{
margin: auto;
height: 40px;
line-height: 40px;
color: white;
width: 960px;
padding: 10px;
font-size: 20px;
text-transform: uppercase;
list-style-type: none;
text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
text-align: center;
}
#menu li
{
display: inline-block;
margin: 0 16px 0;
}
#menu a
{
text-decoration: none;
color: white;
}
#menu a:hover
{
color: #CCC;
}
/* ========== */
.text-column {
width: 700px;
margin: auto;
color: #555;
line-height: 1.85em;
font-family: "Verdana", "Arial", sans-serif;
}
.text-column p {
width: 700px;
text-align: justify;
}
.text-column strong {
color: #111;
}
.text-column code {
font-size: 17px;
}
/* ========== */
.text-column li + li {
margin-top: 1em;
}
/* ========== */
h2.centered {
clear: both;
text-align: center;
text-transform: uppercase;
line-height: 25px;
margin: 70px 0 50px;
color: #333;
font-weight: normal;
}
h2.centered span:before {
content: ' ';
width: 93px;
height: 25px;
display: inline-block;
background: url(/images/heading-left.png) center center no-repeat;
margin-right: 20px;
vertical-align: bottom;
}
h2.centered span:after {
content: ' ';
width: 93px;
height: 25px;
display: inline-block;
background: url(/images/heading-right.png) center center no-repeat;
margin-left: 20px;
vertical-align: bottom;
}