aboutsummaryrefslogtreecommitdiffstats
path: root/static/main.css
blob: 8a7f2b5d318cb24a0e03139d48602f3892cf4e37 (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
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
* {
    padding: 0;
    margin: 0;
    border: 0;
}

a {
    text-decoration: none;
    color: #bbbbbb;
}

a:hover {
    text-decoration: underline;
}

body {
    background-color: #000000;
    font-family: "DejaVu Sans", sans-serif;
}

.clear {
    clear: both;
}

.post {
    background-color: #808080;
    padding: 5px;
    border: 1px #505050 solid;
    margin-bottom: 15px;
    color: #000000;
}

.post h3 {
    float: left;
}

.post .postsubtitle {
    margin-left: 50px;
    text-align: right;
    font-size: 75%;
}

.post .postcontent {
    margin-top: 17px;
    clear: left;
}

#logo {
    float: left;
}

#sitetitle {
    background-color: #000000;
    color: #ffffff;
    height: 70px;
    line-height: 70px;
}

#sitetitle #blue {
    color: #4169E1;
    position: relative;
    top: -5px;
}

#sitetitle #orange {
    color: #ff9800;
    position: relative;
    top: 5px;
}

#sitesubtitle {
    background-color: #404040;
    color: #dddddd;
    text-align: right;
    height: 30px;
    line-height: 30px;
    border-top: 1px #808080 solid;
}

#content {
    width: 750px;
    margin: 0 auto;
    color: #ffffff;
    margin-top: 2px;
}

#content h2 {
    margin-bottom: 5px;
}

#feeds {
    float: right;
    background-color: #404040;
}

#feeds a {
    color: #dddddd;
    display: block;
    padding: 5px;
    text-decoration: none;
}

#feeds a:hover {
    background-color: #dddddd;
    color: #404040;
}

#pager {
    background-color: #808080;
    color: #000000;
    padding: 0 5px;
    position: relative;
}

#pager .nav-prev {
    float: left;
}

#pager .nav-next {
    float: right;
    text-align: right;
}

#pager #current {
    text-align: center;
}