-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
82 lines (66 loc) · 1007 Bytes
/
index.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
/* Generic Elements */
body {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 14px;
color: #333333;
background-color: #F9F9F9;
}
p {
width: 80%;
}
img {
max-width: 100%;
height: auto;
}
h1 {
font-size: 18px;
font-weight: bold;
color: #000000;
}
h2 {
font-size: 16px;
font-weight: bold;
color: #000000;
}
/* IDs */
/* Navigation */
#navigation {
position: absolute;
width: 100%;
height: 5%;
margin: 0;
border-bottom: 1px solid #C6EC8C;
font-weight: normal;
}
#nav-bar li {
display: inline;
font-weight: bold;
padding-right: 5px;
font-size: 1rem;
}
/* Content */
#content {
position: absolute;
padding: 0 0 20px 0;
margin-top: 50px;
margin-left: 235px;
}
#content img {
max-width: 80%;
height: auto
}
/* Classes */
/* Post List */
.post-list {
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 0;
}
.post-list-item {
margin-top: 0;
padding: 0;
}
.post-list-item.meta {
line-height: 0.5;
}