-
Notifications
You must be signed in to change notification settings - Fork 7
/
style.css
443 lines (357 loc) · 12 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
/*
Theme Name: WFX Girder
Theme URI: https://github.com/Jonnyauk/wonderflux-girder
Description: This is an example responsive child theme for the Wonderflux theme framework (requires version 2 and above). Could be used as a starter theme for your own Wonderflux child theme.
Author: Jonny Allbut
Author URI: http://wonderflux.com
Version: 1.4
Template: wonderflux
Template Version: 2.1
Tags: responsive-layout, one-column, two-columns, left-sidebar, right-sidebar, fluid-layout, fixed-layout, responsive-layout, custom-menu, translation-ready
License: GNU General Public License v2.0
License URI: http://www.gnu.org/licenses/gpl-2.0.html
You may also view the license online at http://www.gnu.org/licenses/gpl-2.0.html
*/
/* @group ******** General ******** */
/* @group Colour scheme */
.col-light { color: #fff; }
.col-light-alt { color: #d7d7d7; }
.col-mid { color: #757575; }
.col-mid-alt { color: #909090; }
.col-dark { color: #515151; }
.col-dark-alt { color: #000; }
.col-accent { color: #00a9ac; }
.col-accent-alt { color: #003e51; }
/* @end */
/* @group Typography */
body { font-family: 'Signika', sans-serif; background-color: #003e51; }
h1, h3, h5 { color: #003e51; }
h2, h4, h6 { color: #515151; }
h4, h5, h6 { font-weight: normal; font-style: normal; }
p, ul, ol { color: #515151; }
h1 { font-size: 2.5em; margin-bottom: 15px; }
h2 { font-size: 2.1em; margin-bottom: 15px; }
h3,
h4 { font-size: 1.8em; margin-bottom: 15px; }
h5,
h6,
p,
ul,
ol { font-size: 1.1em; margin-bottom: 15px; }
ul ul, ol ol { font-size:1em; } /* Keeps nested list items consistently sized */
li.wf-edit-meta-links { margin-left: 0px; }
/* @end */
/* @group Layout */
.inside-std { padding: 0 20px 0 0; }
/* @end */
/* @end */
/* @group ******** Links ******** */
a, a:visited, a:active { color: #00a9ac; text-decoration: none; }
a:hover {
color: #39737e;
-webkit-transition: all 0.25s ease-in-out;
-moz-transition: all 0.25s ease-in-out;
-ms-transition: all 0.25s ease-in-out;
-o-transition: all 0.25s ease-in-out;
transition: all 0.25s ease-in-out;
}
.col-light a { color: #fff; }
.col-light a:hover { color: #d7d7d7; }
/* @end */
/* @group ******** Navigation ******** */
/* @group Primary navigation and common menu styling */
.header-navigation-container { background: url(assets/images/bg-grad-top.png) repeat-x 0 bottom; padding: 23px 0 38px; }
ul.menu, ul.sub-menu { list-style: none; margin: 0; padding: 0; }
ul.menu li { margin: 0; }
ul.menu li a {
display: block;
float: left;
margin-bottom: 5px;
margin-right: 5px;
padding: 7px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
font-size: 1.1em;
}
ul.menu li a,
ul.menu li a:visited { background-color: #fff; color: #39737e; }
ul.menu li a:hover,
ul.menu li ul.sub-menu li a:hover { background-color: #003e51; color: #d7d7d7; }
ul.menu li.current_page_item a,
ul.menu li.current-menu-item a,
ul.menu li ul.sub-menu li.current_page_item a { background-color: #00a9ac; color: #ffffff; }
/*Fixes child page hierarchy colouring*/
ul.menu li ul.sub-menu li a,
ul.menu li ul.sub-menu li.page_item_has_children a { background-color: #fff; color: #39737e; }
ul.menu li a:hover,
.footer-navigation ul.menu li a:hover {
-webkit-transition: all 0.25s ease-in-out;
-moz-transition: all 0.25s ease-in-out;
-ms-transition: all 0.25s ease-in-out;
-o-transition: all 0.25s ease-in-out;
transition: all 0.25s ease-in-out;
}
/* @end */
/* @group Footer navigation */
.footer-navigation { padding-top: 40px; }
.footer-navigation ul.menu li a,
.footer-navigation ul.menu li a:visited { background-color: #003e51; color: #d7d7d7; font-size: 90%; }
.footer-navigation ul.menu li a:hover,
.footer-navigation ul.menu li ul.sub-menu li a:hover { background-color: #39737e; color: #d7d7d7; }
.footer-navigation ul.menu li.current_page_item a,
.footer-navigation ul.menu li.current-menu-item a,
.footer-navigation ul.menu li ul.sub-menu li.current_page_item a { background-color: #00a9ac; color: #ffffff; }
/*Fixes child page hierarchy colouring*/
.footer-navigation ul.menu li ul.sub-menu li a,
.footer-navigation ul.menu li ul.sub-menu li.page_item_has_children a { background-color: #003e51; color: #d7d7d7; }
/* @end */
/* @group Mobile Slicknav */
/* Mobile Menu Core Style */
.slicknav_btn { position: relative; display: block; vertical-align: middle; float: right; padding: 0.438em 0.625em 0.438em 0.625em; line-height: 1.125em; cursor: pointer; }
.slicknav_menu .slicknav_menutxt { display: block; line-height: 1.188em; float: left; }
.slicknav_menu .slicknav_icon { float: left; margin: 0.188em 0 0 0.438em; }
.slicknav_menu .slicknav_no-text { margin: 0 }
.slicknav_menu .slicknav_icon-bar { display: block; width: 1.125em; height: 0.125em; -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); }
.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar { margin-top: 0.188em }
.slicknav_nav { clear: both }
.slicknav_nav ul,
.slicknav_nav li { display: block }
.slicknav_nav .slicknav_arrow { font-size: 0.8em; margin: 0 0 0 0.4em; }
.slicknav_nav .slicknav_item { cursor: pointer; }
.slicknav_nav .slicknav_row { display: block; }
.slicknav_nav a { display: block }
.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a { display: inline }
.slicknav_menu:before,
.slicknav_menu:after { content: " "; display: table; }
.slicknav_menu:after { clear: both }
/* IE6/7 support */
.slicknav_menu { *zoom: 1 }
/* User Default Style */
.slicknav_menu { display:none; }
.slicknav_menu { font-size:1em; }
/* Button */
.slicknav_btn {
margin: 14px 0;
text-decoration:none;
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
background-color: #00a9ac;
float: left;
}
/* Button Text */
.slicknav_menu .slicknav_menutxt {
color: #FFF;
font-weight: bold;
text-shadow: none;
}
/* Button Lines */
.slicknav_menu .slicknav_icon-bar {
background-color: #f5f5f5;
margin-top: 4px;
}
.slicknav_menu {
padding: 0;
margin-bottom: 0;
}
.slicknav_nav {
color:#fff;
margin:0;
padding:0;
font-size:1em;
}
.slicknav_nav, .slicknav_nav ul {
list-style: none;
overflow:hidden;
margin-bottom: 10px;
}
.slicknav_nav ul {
padding:0;
margin: 0;
}
.slicknav_nav li {
margin-left: 0;
}
.slicknav_nav ul li {
margin-left: 10px;
}
.slicknav_nav .slicknav_row {
padding: 5px 10px;
margin: 2px 5px 2px 0;
}
.slicknav_nav a{
padding: 5px 10px;
margin: 2px 5px 2px 0;
text-decoration:none;
color:#fff;
}
.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a {
padding:0;
margin:0;
}
.slicknav_nav .slicknav_row:hover {
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
background:#ccc;
color:#fff;
}
.slicknav_nav a:hover{
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
background:#ccc;
color:#222;
}
.slicknav_nav .slicknav_txtnode { margin-left:15px; }
/* @end */
/* @end */
/* @group ******** Header ******** */
#header-bg-1 { background: url(assets/images/bg-grad-bottom.png) repeat-x 0 bottom; }
#header-content { padding: 50px 0 40px; }
.header-primary h1 { font-size: 2.8em; margin-bottom: 1px; margin-top: -10px; }
/* @end */
/* @group ******** Main content ******** */
#main-bg-1 { background: rgba(255, 255, 255, 0.9); }
#main-content { padding-top: 20px; }
.hentry {
margin-top: 0;
margin-right: 0;
margin-left: 0;
border-bottom: 4px solid #d7d7d7;
padding-bottom: 25px;
padding-top: 30px;
}
.hentry.first-in-loop,
.hentry.single-post { padding-top: 0;}
.hentry.single-post,
.hentry.last-in-loop { border-bottom: none; }
.meta-content { border-top: 4px solid #e6e6e6; margin-top: 5px; padding-top: 10px; }
.entry-content ul.wf-edit-meta { list-style-type: none; margin-left: 0; padding-left: 0; }
.widget-box.widget-below-content { background-color: #d6d7d6; padding: 23px 20px 15px; margin-bottom: 30px; }
/* @end */
/* @group ******** Comments ******** */
#comments .commentlist { padding-left: 20px; }
#comments .commentlist li { padding-left: 0; margin-bottom: 20px; }
#commentform p { margin-bottom: 20px; }
#commentform p label { display: block; clear: both; margin-bottom: 10px; }
#commentform input, #commentform textarea { width: 90%; padding: 3px; }
#commentform #form-allowed-tags { width: 90%; font-size: 0.8em; }
#commentform input#submit.submit { padding: 6px; }
/* @end */
/* @group ******** Search form ******** */
#searchform fieldset { border:none; margin: 0 0 20px; padding: 0; }
#searchform fieldset label { display: none; }
input#search.field {
border:none;
width: 80%;
float: left;
height: 35px;
margin: 0;
padding: 5px 8px;
-webkit-border-top-left-radius: 5px;
-webkit-border-bottom-left-radius: 5px;
-moz-border-radius-topleft: 5px;
-moz-border-radius-bottomleft: 5px;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
color: #39737e;
}
.entry-content input#search.field { border: 2px solid #d7d7d7; border-right-style: none; width: 85%; }
input#searchsubmit {
width: 20%;
border: 0;
background: url(assets/images/magnify-glass.svg) center center no-repeat #00a9ac;
text-indent: -9999em;
height: 35px;
margin: 0;
padding: 0;
opacity: 0.5;
-webkit-transition: all 0.25s ease-in-out;
-moz-transition: all 0.25s ease-in-out;
-ms-transition: all 0.25s ease-in-out;
-o-transition: all 0.25s ease-in-out;
transition: all 0.25s ease-in-out;
-webkit-border-top-right-radius: 5px;
-webkit-border-bottom-right-radius: 5px;
-moz-border-radius-topright: 5px;
-moz-border-radius-bottomright: 5px;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
.entry-content input#searchsubmit { width: 15%; }
input#searchsubmit:hover { opacity: 1.0; }
input#search.field:focus,
input#searchsubmit:focus { outline: 0; }
/* @end */
/* @group ******** Sidebar ******** */
#sidebar { margin-top: 3px; } /* Fine tuning for alignment with main content */
.sidebar-box,
#sidebar .widget-box { margin-right: 20px; margin-bottom: 30px; }
#sidebar ul { margin: 0; color: #757575; list-style-type: none; padding: 0; }
#sidebar ul li { list-style-type: none; margin-left: 0; }
#sidebar ul li ul li { margin-left: 10px; border-bottom-style: none; }
.sidebar-title { margin-bottom: 10px; color: #7b7b7b; border-bottom: 2px solid #e6e6e6; font-size: 1.2em; padding-bottom: 2px; }
#sidebar select { width: 100%; }
/* @end */
/* @group ******** Footer ******** */
#footer-content { padding-top: 22px; }
#footer-bg-1 { background: url(assets/images/bg-grad-top.png) center top repeat-x rgba(255, 255, 255, 0.35); }
.footer-primary-right .inside-std { padding-right: 0; }
#footer a { color: #fff; }
#footer a:hover { color: #fff; }
#footer h1,
#footer h2,
#footer h3,
#footer h4,
#footer h5,
#footer h6 {
color: #fff;
}
#footer p {
color: #d7d7d7;
}
/* @end */
/* @group ******** WP Editor overrides ******** */
.mce-content-body { background-color: #fff; }
/* @end */
/* @group ********Media Queries******** */
/* Tiny Media Query and below */
@media screen and (max-width:480px) {
/* @group Layout */
body { font-size: 90%; }
.container { width:95%; }
/* @end */
/* @group Footer */
.footer-primary-right div.inside-std { padding: 0; }
.footer-primary-right div.inside-std { padding: 0; }
/* @end */
}
/* Small Media Query and below */
@media screen and (max-width:768px) {
/* @group Layout */
body { font-size: 95%; }
.container { width:90%; }
.mq-small-min-box-1-1 .inside-std { padding: 0; }
/* @end */
/* @group Navigation */
.header-navigation-container { display:none; }
.slicknav_menu { display:block; }
/* @end */
/* @group Header */
#header-content { padding: 3px 0 0; }
/* @end */
/* @group Sidebar */
.sidebar-box,
#sidebar .widget-box { margin-right: 0px; }
/* @end */
/* @group Footer */
.footer-primary-mid .inside-std { padding-right: 10px; }
.footer-primary-right .inside-std { padding-left: 10px; padding-right: 0; }
/* @end */
}
/* @end */