-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
executable file
·608 lines (601 loc) · 11.9 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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
/*
Theme Name: Created
Theme URI: http://lessmade.com/created-theme
Description: A responsive theme built off of ZURB's Foundation framework for the creation of awesome websites.
Author: Jared Erickson
Author URI: http://jarederickson.com
Version: 1.0
*/
/*
Compiled using LESS.
.Less styles located in themes directory /css/style.less
(more info about less: http://lesscss.org/)
*/
/* -------------------------------------------------- Common tools and elements */
.alignleft {
float: left;
margin: 0 20px 8px 0;
}
.alignright {
float: right;
margin: 0 0 8px 20px;
}
.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}
pre {
width: 92%;
overflow: auto;
margin: 18px 0;
padding: 10px 8px 10px 12px;
color: #999999;
border: 1px solid #dddddd;
border-left: 6px solid #00a6fc;
font: lighter 12px/20px Monaco, 'MonacoRegular', monospace;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-moz-background-clip: padding;
-webkit-background-clip: padding-box;
background-clip: padding-box;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
}
/* call to action box */
.ctab-box {
padding: 40px 60px;
background: #f0f0f0;
margin-bottom: 40px;
}
.ctab-box .button {
float: right;
}
/* -------------------------------------------------- Typography */
body * {
word-wrap: break-word;
}
body {
color: #686868;
font-family: "Helvetica Neue", "HelveticaNeue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-size: 14px;
font-size: 1.4rem;
line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Helvetica Neue", "HelveticaNeue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
a,
a:visited {
color: #454545;
-webkit-transition: color 0.25s ease-in-out;
-moz-transition: color 0.25s ease-in-out;
-o-transition: color 0.25s ease-in-out;
-ms-transition: color 0.25s ease-in-out;
transition: color 0.25s ease-in-out;
}
a:hover {
color: #777777;
}
p {
line-height: 1.5;
font-size: 14px;
}
a.button,
a.button:visited {
color: #ffffff;
}
a.button:active,
a.button:hover {
color: #ffffff;
}
/* -------------------------------------------------- main elements */
.container {
padding: 0;
}
/* change this to change your whole layouts width */
.row {
max-width: 1170px;
}
/* -------------------------------------------------- header styling */
/* -- Pre header nav */#pre-header {
background: #f0f0f0;
}
.pre-header-text {
float: left;
}
.pre-header-text a {
color: #f0f0f0;
font-size: 14px;
background: #bf680f;
padding: 0 10px;
display: block;
}
.pre-header-text a:hover {
background: #aa6824;
}
.pre-header-inner nav {
float: right;
}
.pre-header-inner ul {
display: inline;
}
.pre-header-inner ul > li {
float: left;
margin: 0;
font-size: 14px;
}
.pre-header-inner ul > li > a {
margin-left: 10px;
}
/* social icons for custom menu classes */
#menu-pre-header .general {
line-height: 0;
}
header {
padding: 0;
}
#inner-header {
margin: 60px 0 40px;
}
#logo a img {
-webkit-transition: opacity 0.25s ease-in-out;
-moz-transition: opacity 0.25s ease-in-out;
-o-transition: opacity 0.25s ease-in-out;
-ms-transition: opacity 0.25s ease-in-out;
transition: opacity 0.25s ease-in-out;
opacity: 1;
}
#logo a:hover img {
opacity: 0.6;
}
#site-title {
font-size: 24px;
text-transform: uppercase;
margin-bottom: 0;
}
#logo .subheader {
font-size: 14px;
margin-bottom: 0;
}
/* -------------------------------------------------- navigation styling */
#main-nav .nav-bar {
border: 1px solid #dddddd;
background: #f0f0f0;
margin: 0;
}
#main-nav .nav-bar > li.has-flyout > a.flyout-toggle span {
border-top-color: #686868;
}
#main-nav .nav-bar > li.has-flyout:hover > a.flyout-toggle span {
border-top-color: #999999;
}
/* navigation dropdown */
#main-nav .nav-bar ul ul {
display: none;
}
#main-nav .nav-bar .flyout {
padding: 0;
}
#main-nav .nav-bar > li li {
margin-bottom: 0;
}
#main-nav .nav-bar > li li:last-child a {
border-bottom: none;
}
#main-nav .nav-bar > li li a {
border-bottom: 1px solid #dddddd;
padding: 15px 20px;
display: block;
-webkit-transition: all 0.25s ease-in-out;
-moz-transition: all 0.25s ease-in-out;
-o-transition: all 0.25s ease-in-out;
-ms-transition: all 0.25s ease-in-out;
transition: all 0.25s ease-in-out;
}
#main-nav .nav-bar > li li a:hover {
padding-left: 25px;
color: #00a6fc;
}
/* layout positioning */
/* logo above navigation */
#logo.layout-logo-above {
margin-bottom: 20px;
}
/* Logo on the left of nav */
#logo.layout-logo-left {
float: left;
}
#main-nav.layout-logo-left {
float: right;
}
/* layout center */
#logo.layout-logo-center {
text-align: center;
margin-bottom: 20px;
}
/* -------------------------------------------------- Pages */
/* home page template */
#welcome-wrapper {
margin-bottom: 40px;
padding: 40px 0;
}
#home-hello h3 {
text-align: center;
text-transform: uppercase;
font-family: 'Open Sans', helvetica, sans-serif;
font-size: 68px;
line-height: 1;
}
#home-hello h3 span {
color: #bf680f;
font-style: italic;
}
#bucket-wrapper {
margin-bottom: 40px;
}
.bucket-img {
margin-bottom: 10px;
}
.bucket-img img {
width: 100%;
}
.bucket-img a {
display: block;
}
/* -------------------------------------------------- loops */
.post {
margin-bottom: 40px;
}
.the-date {
font-size: 11px;
}
.post-title {
color: #454545;
font-size: 36px;
line-height: 1;
border-bottom: 1px solid #dddddd;
margin-bottom: 15px;
padding-bottom: 5px;
}
.wp-caption {
max-width: 100%;
background: #f0f0f0;
text-align: center;
padding-top: 5px;
}
.wp-caption img {
width: 98%;
}
.wp-caption-text {
padding: 2px 0;
text-align: center;
}
.post-meta {
background: #f7f7f7;
padding: 5px;
}
.post-meta .comment-count {
font-weight: bold;
}
.paged-post {
padding: 20px;
border: 1px solid #dddddd;
margin-bottom: 40px;
}
.paged-post a {
border-bottom: 1px dotted #dddddd;
}
.paged-post span {
font-weight: bold;
color: #999999;
}
/* pagination */
#pagination {
padding: 60px 0;
}
/* -------------------------------------------------- Comment form */
#comments-list > ol,
#trackbacks-list > ol {
margin-left: 0;
list-style-type: none;
}
#comments-list > ol > li,
#comments-list > ol ul.children > li {
margin-bottom: 20px;
}
#comments-list > ol ul.children {
margin-left: 20px;
margin-top: 20px;
}
#comments-list .comment-author > img {
float: left;
border: 1px solid #dddddd;
padding: 2px;
margin: 0 20px 8px 0;
position: relative;
}
#comments-list .comment-content {
min-height: 40px;
padding: 5px;
position: relative;
background: #f0f0f0;
border: 1px solid #f0f0f0;
margin-top: 12px;
}
#comments-list .comment-content:after {
content: '';
display: block;
position: absolute;
top: -20px;
left: 9px;
width: 0;
height: 0;
border-color: transparent transparent #f0f0f0 transparent;
border-style: solid;
border-width: 10px;
}
#comment {
width: 100%;
}
#respond label {
margin-bottom: 0;
}
#respond textarea {
margin-top: 0;
}
/* trackbacks and pingbacks */
#trackbacks-list > ol .trackback,
#trackbacks-list > ol .pingback {
padding: 20px 20px 0;
border: 1px solid #dddddd;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-moz-background-clip: padding;
-webkit-background-clip: padding-box;
background-clip: padding-box;
}
/* -------------------------------------------------- sidebar */
/* -------------------------------------------------- footer */
#footer-widgets {
background: #f0f0f0;
}
#footer-widgets .widget {
padding: 40px 0;
}
#sub-floor {
background: #101010;
padding: 20px 0 0;
text-align: right;
}
/*
Slider - styling
responsiveslider http://responsiveslides.com v1.32 by @viljamis
*/
.slider-wrapper {
margin-bottom: 40px;
}
.created-slider {
cursor: pointer;
}
.rslides {
position: relative;
list-style: none;
overflow: hidden;
width: 100%;
padding: 0;
margin: 0;
}
.rslides li {
position: absolute;
display: none;
width: 100%;
left: 0;
top: 0;
margin-bottom: 0;
}
.rslides li:first-child {
position: relative;
display: block;
float: left;
}
.rslides .slider-img {
max-height: 500px;
overflow: hidden;
}
.rslides img {
display: block;
height: auto;
float: left;
width: 100%;
border: 0;
}
.rslides .slider-img .slider-no-image {
min-height: 480px;
width: 100%;
background: #828876;
}
.rslides .caption {
display: block;
position: absolute;
z-index: 3;
width: 30%;
left: 25px;
top: 25px;
color: #fff;
padding: 20px 40px;
margin: 0;
max-width: none;
}
.rslides .caption h2 {
font-size: 36px;
color: #fff;
text-transform: uppercase;
line-height: 1;
white-space: pre-wrap;
text-shadow: 0 0 0 transparent, 1px 5px 8px rgba(0, 0, 0, 0.1);
}
.rslides .caption p {
color: #fff;
font-size: 16px;
}
/* Slider navigation */.rslides_nav {
position: absolute;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
bottom: 0;
left: 0;
opacity: 0.7;
text-indent: -9999px;
overflow: hidden;
text-decoration: none;
height: 61px;
width: 38px;
background: transparent url(images/arrows.gif) no-repeat left top;
margin-top: -45px;
z-index: 80;
}
.rslides_nav:active {
opacity: 1.0;
}
.rslides_nav.next {
left: 39px;
background-position: right top;
right: 0;
}
/* uncomment if you want large arrow navigation */
/*
.rslides_nav {
position: absolute;
-webkit-tap-highlight-color: rgba(0,0,0,0);
top: 0;
bottom: 0;
left: 0;
display: block;
background: #fff url(images/arrow-left.gif) no-repeat 10% center;
opacity: 0;
filter: alpha(opacity=1);
width: 48%;
text-indent: -9999px;
overflow: hidden;
height: 100%;
}
.rslides_nav:hover {
opacity: 0.2;
}
.rslides_nav.next {
left: auto;
right: 0;
background-image: url(images/arrow-right.gif);
background-position: 90% center;
}
*/
.rslides_nav:focus {
outline: none;
}
/* Slider Tabs */.rslides_tabs {
background: rgba(255, 255, 255, 0.4);
text-align: center;
position: absolute;
bottom: 0;
left: 0;
margin-bottom: 0;
padding: 25px 20px 0;
height: 36px;
opacity: 0;
-webkit-transition: all 0.25s ease-in-out;
-moz-transition: all 0.25s ease-in-out;
-o-transition: all 0.25s ease-in-out;
-ms-transition: all 0.25s ease-in-out;
transition: all 0.25s ease-in-out;
}
.created-slider:hover .rslides_tabs {
opacity: 1;
left: 78px;
}
.rslides_tabs li {
display: inline;
float: none;
_float: left;
*float: left;
margin-right: 5px;
}
.rslides_tabs a {
text-indent: -9999px;
overflow: hidden;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
background: #ccc;
background: rgba(0, 0, 0, 0.2);
display: inline-block;
_display: block;
*display: block;
-webkit-box-shadow: inset 0 0 2px 0 rgba(0, 0, 0, 0.1);
-moz-box-shadow: inset 0 0 2px 0 rgba(0, 0, 0, 0.1);
box-shadow: inset 0 0 2px 0 rgba(0, 0, 0, 0.1);
width: 9px;
height: 9px;
}
.rslides_tabs .rslides_here a {
background: #222;
background: rgba(0, 0, 0, 0.8);
}
/* mobile devices (tablets phones) */
@media only screen and (max-width: 767px) {
/* pre header */
.pre-header-text {
float: none;
text-align: center;
}
.pre-header-inner nav {
float: none;
text-align: center;
padding: 10px 0;
}
/* header layout tweaks */
#logo.layout-logo-left {
float: none;
}
#main-nav.layout-logo-left {
margin-top: 20px;
float: none;
}
/* Post tweaks */
/* slider tweaks */
.rslides {
padding-bottom: 62px;
background: #f0f0f0;
}
.rslides .slider-img .slider-no-image {
min-height: 142px;
}
.rslides .caption {
width: 90%;
top: 0;
left: 0;
padding: 20px;
}
.rslides .caption h2 {
font-size: 28px;
}
/* call to action box */
.ctab-box .button {
float: none;
}
}
/*common desktop */@media only screen and (max-width: 1200px) {
.padded {
padding-left: 20px !important;
padding-right: 20px !important;
}
}