forked from willwhite/longneck
-
Notifications
You must be signed in to change notification settings - Fork 1
/
site.css
182 lines (159 loc) · 2.88 KB
/
site.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
---
---
{% include css/reset.css %}
body {
background:#fff url(assets/background.png);
color:#444;
font:normal 14px/20px 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
a {
text-decoration:none;
color: #4183C4;
}
.limiter {
width:760px;
margin:0px auto;
}
aside {
position:relative;
float:right;
width:210px;
margin-top:175px;
}
header .logo {
height:175px;
background:url(assets/logo.png) no-repeat 50% 50%;
display:block;
overflow:hidden;
text-indent:-9999px;
}
#main,
header .logo {
width:530px;
}
#content {
padding:0px 20px 20px;
}
.followers,
.follower-project,
.tweets,
.editing { margin-bottom:10px; }
.prose h1,
.prose h2 {
font-family: 'Jockey One', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size:22px;
font-weight:normal;
}
/* Prose */
.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 { color:#000; }
.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6,
.prose p,
.prose ul,
.prose ol,
.prose hr,
.prose img,
.prose blockquote,
.prose pre,
.prose table,
.prose iframe,
.prose object,
.prose .ts-map {
display:block;
margin:0px 0px 20px;
}
a.github-user {
display:block;
height:48px;
width:48px;
margin: 0px 4px 4px 0px;
float:left;
}
a.github-user .thumb {
display:block;
height:48px;
width:48px;
background:white 50% 50% no-repeat;
background-size:48px;
}
.buttons {
margin-bottom:10px;
width:205px;
}
.buttons a {
text-align:center;
font-size:15px;
line-height:36px;
display:block;
margin:0;
padding:0;
padding:4px;
color: #333;
background:#FBDFBC;
text-shadow: 1px 1px 0 white;
-webkit-border-radius:5px;
-moz-border-radius:5px;
border-radius:5px;
}
.watch-docs {
opacity:0;
z-index:-1000;
font-size:12px;
position:absolute;
top:-20px;
left:-320px;
width:275px;
background:white;
border:1px solid #CACACA;
padding:15px 15px 10px;
-webkit-border-radius:5px;
-moz-border-radius:5px;
border-radius:5px;
transition:opacity .25s, z-index 0s .25s;
-moz-transition:opacity .25s, z-index 0s .25s;
-webkit-transition:opacity .25s, z-index 0s .25s;
}
.watch-docs.active {
opacity:100;
z-index:0;
transition:opacity .25s, z-index 0s 0s;
-moz-transition:opacity .25s, z-index 0s 0s;
-webkit-transition:opacity .25s, z-index 0s 0s;
}
.watch-docs ol {
list-style-type:decimal;
padding-left:20px
}
.watch-docs img {
margin:10px 15px 0px;
text-align:center;
}
.editing {
font-size:11px;
line-height:16px;
}
/*
** Markup free clearing
** Details: http://www.positioniseverything.net/easyclearing.html
*/
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.clearfix { display: inline-block; }
/* Hides from IE-mac \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* End hide from IE-mac */