forked from js13kGames/resources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
137 lines (136 loc) · 1.98 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
* {
margin: 0;
padding: 0;
}
body {
background: #efefef url(img/bg_content.png) fixed repeat;
font: normal 15px/22px Helvetica, Arial, sans-serif;
color: #333;
position: relative;
}
a {
text-decoration: none;
color: #b12a34;
outline: none;
}
h1,
h2,
h3,
nav a
{
font-family: "Graduate", "Times New Roman", Verdana;
font-weight: normal;
}
header {
background: #2d2d2d url(img/bg_header.png) repeat;
border-top: 5px solid #a52730;
border-bottom: 4px solid #fff;
}
nav {
width: 960px;
margin: 10px auto;
position: relative;
}
nav > a {
display: block;
width: 295px;
height: 62px;
background: url(img/js13kgames.png) no-repeat;
text-indent: -5000px;
}
nav ul {
position: absolute;
top: 18px;
right: 0;
}
nav li {
display: inline-block;
padding-left: 10px;
}
nav li a {
color: #e2e2e2;
font-size: 18px;
}
nav li a:hover {
color: #b12a34;
}
main {
box-sizing: border-box;
width: 960px;
margin: 0 auto 20px;
padding: 0 30px;
background: #fafafa;
border-radius: 0 0 10px 10px;
}
main a {
font-weight: bold;
}
main a:hover {
text-decoration: none;
border-bottom: 1px solid #b12a34;
}
main p {
padding-bottom: 20px;
}
h1 {
font-size: 32px;
color: #acabab;
text-align: center;
padding: 20px 0 15px;
line-height: 40px;
}
h1:before {
content: " • ";
}
h1:after {
content: " • ";
}
h3 {
line-height: 40px;
}
ul {
padding-left: 30px;
padding-bottom: 15px;
}
.posts {
padding-top: 10px;
}
a.fork.page {
position: absolute;
top: 0;
right: 0;
width: 149px;
height: 149px;
background-image: url(img/forkme.png);
}
a.fork:hover {
border: none;
}
.note {
padding-top: 30px;
font-size: 12px;
text-align: center;
color: #999;
}
footer {
background: #2d2d2d url(img/bg_header.png) repeat;
border-top: 7px solid #fff;
border-bottom: 5px solid #a52730;
}
footer div {
width: 960px;
margin: 0 auto;
color: #e2e2e2;
font-size: 12px;
padding: 40px 0;
position: relative;
}
footer p {
position: absolute;
top: 40px;
right: 0;
}
footer a {
color: #fff;
font-weight: bold;
}