-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (75 loc) · 1.43 KB
/
style.css
File metadata and controls
92 lines (75 loc) · 1.43 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
/* Solarized colors for reference
$base03: #002b36;
$base02: #073642;
$base01: #586e75;
$base00: #657b83;
$base0: #839496;
$base1: #93a1a1;
$base2: #eee8d5;
$base3: #fdf6e3;
$yellow: #b58900;
$orange: #cb4b16;
$red: #dc322f;
$magenta: #d33682;
$violet: #6c71c4;
$blue: #268bd2;
$cyan: #2aa198;
$green: #859900;
*/
body {
background-color: #fdf6e3; /* solarized light bg */
font-size: 12px;
font-family: Verdana, Arial, SunSans-Regular, Sans-Serif;
color: #657b83; /* solarized base00 */
}
em,b { color: #586e75; /* solarized base01 */ }
a { color: #268bd2; /* solarized blue */ }
a:active, a:visited { color: #6c71c4; /* solarized violet */ }
a:hover { color: #2aa198;; /* solarized cyan */ }
h1 { color: #b58900; /* solarized yellow */ }
h2,h3,h4,h5,h6 { color: #cb4b16; /* solarized orange */ }
#content {
width: 50%;
min-width: 600px;
margin-left: 200px;
padding-left: 50px;
}
#sidebar {
float: left;
width: 200px;
min-width: 200px;
margin-left: 10px;
}
#header {
width: 50%;
min-width: 900px;
margin-left: 10px;
}
#title {
color: #b58900;
font-size: 24px;
}
#navigation {
font-size: 18px;
float: right;
}
.highlight {
padding-top: 1px; /* Somthing is weird here, 1px gives a whole lotta space */
padding-bottom: 1px;
padding-left: 15px;
border-radius: 5px;
}
#footer {
clear: both;
width: 100%;
}
.post {
margin: 10px;
}
.entry {
margin-left: 10px;
padding: 10px;
}
.meta {
padding-top: 10px;
}