blob: 4be1bf548786c9eb8749f8aef5ecbece2ae40cb5 (
plain)
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
|
body {
background-color:#020202;
color: #f2f2f2;
font-family: 'arial';
padding: 0;
margin: 0;
}
img {
max-width: 99%;
width: auto;
height: auto;
}
main {
width: 800px;
max-width: 95%;
margin-left: auto;
margin-right: auto;
}
header {
background-color: #121212;
padding-left: 50px;
height:55px;
}
header div {
padding-top: 12px;
}
header img {
margin-top: 2px;
position: absolute;
left: 5px;
}
a {
text-decoration: none;
color: #f2f2f2;
}
h1 {
font-size: 1.5em;
display: inline;
}
h2 {
font-size: 1.1em;
}
h4 {
font-size: 1.1em;
}
article.list {
display: inline-block;
}
article.list img {
margin: auto;
display: block;
}
.next-link {
float: right;
}
footer {
width: 800px;
max-width: 95%;
margin-left: auto;
margin-right: auto;
opacity: 0.5;
}
footer div {
text-align: center;
}
|