-
Notifications
You must be signed in to change notification settings - Fork 4
/
style.css
130 lines (108 loc) · 1.82 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
body {
font: 14px Helvetica Neue;
text-rendering: optimizeLegibility;
margin-top: 1em;
overflow-y: scroll;
}
a {
color: steelblue;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.body {
width: 960px;
margin: auto;
}
.topbar a {
margin-right: .5em;
}
.content {
position: relative;
margin-left: 240px;
}
.content img {
display: block;
margin: auto;
}
.sidebar {
position: absolute;
left: -240px;
width: 230px;
font-weight: 300;
}
.gallery {
position: relative;
left: -240px;
width: 970px;
}
.content .gallery img {
display: inline;
width: 226px;
height: 180px;
border: solid 2px #ccc;
margin-right: 10px;
margin-bottom: 8px;
}
.content .gallery a:hover img {
border-color: steelblue;
}
.list {
clear: left;
margin-top: 14px;
}
.list img {
float: left;
}
h1 {
font-size: 36px;
font-weight: 300;
margin-bottom: .3em;
}
.sidebar {
color: #666;
}
.sidebar ul {
padding-left: 0;
list-style-type: none;
}
.sidebar li {
white-space: nowrap;
width: 230px;
overflow: hidden;
text-overflow: ellipsis;
}
.sidebar h3 {
font-weight: 300;
}
.foot {
font-weight: 300;
margin-left: 240px;
padding-top: 3em;
width: 710px;
clear: both;
}
button {
background: #222 url(button-overlay.png) repeat-x;
font: 12px Helvetica Neue;
color: #fff;
text-shadow: 0 -1px 1px #222;
padding: 6px 10px 6px 10px;
border: 0;
border-bottom: 1px solid #222;
min-width: 80px;
-moz-border-radius: 5px;
-moz-box-shadow: 0 1px 3px #999;
-webkit-border-radius: 5px;
-webkit-box-shadow: 0 1px 3px #999;
}
button:hover {
background-color: #555;
}
.highlight {
font: 12px monospace;
}
.highlight pre {
overflow-x: auto;
}