forked from travisneilson/Art-Directed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
229 lines (190 loc) · 4.07 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
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
/*
Theme Name: Art Directed Posts Wordpress Theme
Theme URI: http://travisneilson.com/
Description: Theme for TravisNeilson.com
Version: 1
Author: Travis Neilson
Author URI: http://travisneilson.com/
Tags: Art Directed Posts Theme
Make Art-Directed Posts
http://travisneilson.com/my-post
This theme was designed and built by Travis Neilson,
whose blog you will find at http://travisneilson.com/
*/
/**********************************************
Every single piano i've ever met in my life
never sounded as good as melted Casio keys
**********************************************/
/* Kills the WP-Stats happyface */
#wpstats { display: none !important; }
/* Temp Home Styles, define all these on your own, sucka */
body{
font-family: "helvetic neue", helvetica, arial, sans-serif;
}
.logo {
width: 34px;
height: 34px;
position: fixed;
top: 10px;
left: 10px;
background: #444;
border-radius: 19px;
border: 2px solid #fff;
background: #222 url('img/logo2.png') no-repeat 4px center;
overflow: hidden;
transition: width 0.2s ease-in-out;
-webkit-transition: width 0.2s ease-in-out;
-moz-transition: width 0.2s ease-in-out;
-o-transition: width 0.2s ease-in-out;
cursor: default;
z-index: 100;
}
.not-home .logo {
cursor: pointer;
}
.not-home .logo:hover {
width: 95px;
}
.logo span {
display: inline-block;
line-height: 36px;
font-weight: bold;
margin-left: 37px;
color: #aaa;
font-size: 14px;
pointer-events: none;
}
body.home {
background: center top repeat url('http://subtlepatterns.subtlepatterns.netdna-cdn.com/patterns/subtle_dots.png');
color: #444;
width: 800px;
margin: 20px auto 40px;
}
.home h1 {
text-transform: uppercase;
font-size: 65px;
text-indent: -34px;
margin-bottom: 50px;
margin-top: 30px;
}
.home ul.loop {
list-style: none;
padding: 0;
margin: 0 auto;
float: left;
width: 300px;
}
.home li {
padding: 0;
margin-bottom: 10px;
}
.home .loop a, .home
.instructions a {
display: inline-block;
background: #444;
color: #f2f2f2;
text-decoration: none;
padding: 2px 4px;
font-size: 24px;
}
.home .loop a:hover,
.home .instructions a:hover {
background: hsl(55, 100%, 68%);
color: #444;
}
.home .loop a.download,
.home .instructions a.download {
background: #efe56d;
color: #444;
background: hsl(55, 100%, 68%);
border: 2px solid #fff;
}
.home .loop a.download:hover,
.home .instructions a.download:hover {
background: hsl(55, 100%, 58%);
border: 2px solid #444;
}
a.download:before {
content: '';
position: relative;
width: 21px;
height: 21px;
background: url('img/dl.png') no-repeat center center;
display: inline-block;
margin: 0 8px;
}
.home p, .home li {
line-height: 1.5;
margin-bottom: 20px;
}
.home .instructions {
float: right;
width: 400px;
text-align: left;
margin-top: -55px;
}
.home code {
color: darkorchid;
background: #ddd;
padding: 2px 0;
}
.screen-shot {
position: relative;
display: inline-block;
width: 60px;
height: 60px;
float: right;
margin-left: 15px;
border: 2px solid #444;
background-color: hsl(55, 100%, 68%);
cursor: pointer;
}
.screen-shot:hover:before {
content: '';
display: block;
width: 60px;
height: 60px;
position: absolute;
top: 0;
left: 0;
background-color: hsla(55, 100%, 68%, .8);
}
.screen-shot:hover:after {
content: '+';
display: block;
width: 60px;
height: 60px;
position: absolute;
top: 0;
left: 0;
text-align: center;
line-height: 60px;
font-size: 27px;
}
.new-post-folder {
background-image: url('img/new-post-folder.png');
background-position: 612px -100px;
}
.add-post-screen {
background-image: url(img/add-post-screen.png);
background-position: 952px -450px;
}
.overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: hsla(55, 100%, 68%, .8);
background-position: center center;
background-repeat: no-repeat;
z-index: 2;
cursor: pointer;
display: none;
}
.overlay-post-folder {
background-image: url(img/new-post-folder.png);
}
.overlay-post-screen {
background-image: url(img/add-post-screen.png);
}