jumbo-jekyll-theme 5.6.9.2 → 5.6.9.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +10 -10
- data/_config.yml +213 -213
- data/_data/example-carousel-data-source.yml +36 -36
- data/_data/footer.yml +33 -33
- data/_data/nav.yml +17 -17
- data/_data/settings.yml +103 -103
- data/_data/tags.yml +11 -11
- data/_data/universal-nav.yml +7 -7
- data/_includes/breadcrumb.html +97 -97
- data/_includes/core/blocks.html +30 -30
- data/_includes/core/button.html +5 -5
- data/_includes/core/buttons.html +5 -5
- data/_includes/core/container_row.html +7 -7
- data/_includes/core/feature_block.html +43 -43
- data/_includes/core/full_width_row.html +5 -5
- data/_includes/core/members-section.html +32 -32
- data/_includes/core/slider.html +33 -33
- data/_includes/core/slider_row.html +2 -2
- data/_includes/core/title.html +3 -3
- data/_includes/core/youtube_video_embed.html +11 -11
- data/_includes/css.html +9 -9
- data/_includes/custom_include.html +13 -13
- data/_includes/custom_include_row.html +562 -562
- data/_includes/display-blog-posts.html +154 -154
- data/_includes/flow_inner.html +19 -19
- data/_includes/footer.html +68 -68
- data/_includes/google-analytics.html +16 -16
- data/_includes/head.html +19 -19
- data/_includes/image.html +6 -6
- data/_includes/javascript.html +10 -10
- data/_includes/jumbotron.html +115 -115
- data/_includes/linaro-404.html +19 -19
- data/_includes/nav.html +153 -153
- data/_includes/pagination.html +38 -38
- data/_includes/post-sidebar.html +182 -182
- data/_includes/responsive-image.html +5 -5
- data/_includes/schema.html +43 -43
- data/_includes/thumb.html +1 -1
- data/_includes/thumbnail_image.html +9 -9
- data/_includes/universal-nav.html +30 -30
- data/_layouts/author.html +5 -5
- data/_layouts/default.html +3 -3
- data/_layouts/error.html +25 -25
- data/_layouts/flow.html +35 -35
- data/_layouts/jumbotron.html +11 -11
- data/_layouts/post-index.html +16 -16
- data/_layouts/post.html +39 -39
- data/_sass/app/overrides.scss +65 -65
- data/_sass/app/search.scss +51 -51
- data/_sass/bootstrap/_variables.scss +932 -932
- data/_sass/core.scss +20 -20
- data/_sass/core/blog.scss +425 -425
- data/_sass/core/carousel-header.scss +90 -90
- data/_sass/core/error.scss +190 -190
- data/_sass/core/flow.scss +186 -186
- data/_sass/core/footer.scss +141 -141
- data/_sass/core/jumbotron.scss +279 -279
- data/_sass/core/normalize.scss +357 -357
- data/_sass/core/theme.scss +871 -871
- data/_sass/home.scss +2 -2
- data/assets/css/main-blog.scss +13 -13
- data/assets/css/main-error.scss +13 -13
- data/assets/css/main.scss +11 -11
- data/assets/js/app/facebook.js +7 -7
- data/assets/js/app/main.js +261 -261
- data/assets/js/pacakge-search.js +9 -9
- data/assets/js/package-blog.js +12 -12
- data/assets/js/package-extended.js +14 -14
- data/assets/js/package-home.js +14 -14
- data/assets/js/package-main.js +13 -13
- data/assets/js/package-search.js +8 -8
- data/assets/js/vendor/fess-ss.min.js +24 -24
- data/robots.txt +9 -9
- metadata +2 -16
data/_sass/core/theme.scss
CHANGED
@@ -1,871 +1,871 @@
|
|
1
|
-
// Body Style
|
2
|
-
body {
|
3
|
-
background-color: $navbar-inverse-bg;
|
4
|
-
letter-spacing: 0.5px;
|
5
|
-
overflow-x: hidden;
|
6
|
-
height : 100%;
|
7
|
-
overflow: auto;
|
8
|
-
font-family: $font-family-sans-serif;
|
9
|
-
-webkit-font-smoothing: antialiased;
|
10
|
-
}
|
11
|
-
/* ------------ Main Container Style margin accounts for Nav ----------- */
|
12
|
-
.container-fluid.main{
|
13
|
-
overflow-x: hidden;
|
14
|
-
}
|
15
|
-
.container-fluid.home{
|
16
|
-
overflow-x: hidden;
|
17
|
-
}
|
18
|
-
.content-row{
|
19
|
-
background-color:$body-bg;
|
20
|
-
}
|
21
|
-
// Iphone Bug Fix
|
22
|
-
html.ios7 body {
|
23
|
-
height: 100%;
|
24
|
-
position: fixed;
|
25
|
-
width: 100%;
|
26
|
-
}
|
27
|
-
.ext-left {
|
28
|
-
float: left;
|
29
|
-
}
|
30
|
-
.ext-right {
|
31
|
-
height: auto;
|
32
|
-
vertical-align: middle;
|
33
|
-
display: table-cell;
|
34
|
-
padding-right: 10px;
|
35
|
-
padding-left: 10px;
|
36
|
-
}
|
37
|
-
button.owl-dot {
|
38
|
-
background-color: transparent;
|
39
|
-
border: 0;
|
40
|
-
outline: none;
|
41
|
-
}
|
42
|
-
button.owl-prev, button.owl-next {
|
43
|
-
outline: none;
|
44
|
-
border: 0;
|
45
|
-
}
|
46
|
-
.mc-unsubscribe a {
|
47
|
-
position: relative;
|
48
|
-
bottom: 0;
|
49
|
-
font-size: 12px;
|
50
|
-
top: 30px;
|
51
|
-
float: right;
|
52
|
-
margin-right: 15px;
|
53
|
-
}
|
54
|
-
a.btn.btn-primary {
|
55
|
-
background-color:#3c3b39;
|
56
|
-
color:white;
|
57
|
-
border-radius:0px;
|
58
|
-
border:0;
|
59
|
-
}
|
60
|
-
a.btn.btn-primary:hover {
|
61
|
-
background-color:$brand-primary;
|
62
|
-
}
|
63
|
-
#wrapper {
|
64
|
-
a.btn {
|
65
|
-
transition: all 300ms ease;
|
66
|
-
border-radius: 2px;
|
67
|
-
&:hover {
|
68
|
-
transform: translateY(-2px);
|
69
|
-
color:#fff;
|
70
|
-
@extend .drop_shadow;
|
71
|
-
}
|
72
|
-
}
|
73
|
-
}
|
74
|
-
|
75
|
-
// Edit me on github buttons
|
76
|
-
.github-edit {
|
77
|
-
background-color: #fff;
|
78
|
-
}
|
79
|
-
#wrapper a[type="button"] {
|
80
|
-
-webkit-appearance: none;
|
81
|
-
}
|
82
|
-
#wrapper div#github_controls a.btn {
|
83
|
-
-webkit-appearance: none;
|
84
|
-
}
|
85
|
-
span.edit-me-on-github-text {
|
86
|
-
font-size: 12px;
|
87
|
-
}
|
88
|
-
.edit-me-on-github.text-center {
|
89
|
-
float: right;
|
90
|
-
}
|
91
|
-
i.edit-on-github-icon.icon-github-circled.center-block {
|
92
|
-
font-size: 40px;
|
93
|
-
}
|
94
|
-
div#github_controls {
|
95
|
-
margin: 10px 0;
|
96
|
-
}
|
97
|
-
div#github_controls a.btn {
|
98
|
-
padding:5px;
|
99
|
-
height: 50px;
|
100
|
-
background-color: #fff;
|
101
|
-
color: #333;
|
102
|
-
padding-left: 15px;
|
103
|
-
padding-right: 15px;
|
104
|
-
border: 1px solid #f0f0f0;
|
105
|
-
|
106
|
-
transition: all 500ms ease;
|
107
|
-
}
|
108
|
-
|
109
|
-
div#github_controls a.btn:hover {
|
110
|
-
background-color: #333;
|
111
|
-
color: #fff;
|
112
|
-
}
|
113
|
-
span.top-text {
|
114
|
-
display: block;
|
115
|
-
text-transform: uppercase;
|
116
|
-
}
|
117
|
-
span.bottom-text {
|
118
|
-
display: block;
|
119
|
-
font-size: 11px;
|
120
|
-
}
|
121
|
-
.drop_shadow {
|
122
|
-
-webkit-box-shadow: 0px 0px 35px -4px rgba(0,0,0,0.85);
|
123
|
-
-moz-box-shadow: 0px 0px 35px -4px rgba(0,0,0,0.85);
|
124
|
-
box-shadow: 0px 0px 35px -4px rgba(0,0,0,0.85);
|
125
|
-
}
|
126
|
-
|
127
|
-
i.icon-github-circled.center-block {
|
128
|
-
font-size: 24px;
|
129
|
-
}
|
130
|
-
div#github_controls a#github_home:hover {
|
131
|
-
color: #fff;
|
132
|
-
background-color:#333;
|
133
|
-
}
|
134
|
-
div#github_controls a#github_home {
|
135
|
-
background-color: #fff;
|
136
|
-
color: #333;
|
137
|
-
transition: all 250ms ease;
|
138
|
-
}
|
139
|
-
#wrapper blockquote{
|
140
|
-
background: #f9f9f9;
|
141
|
-
margin: .5em 10px;
|
142
|
-
padding: 0 10px;
|
143
|
-
quotes: "\201C""\201D""\2018""\2019";
|
144
|
-
padding: 20px 20px;
|
145
|
-
line-height: 1.4;
|
146
|
-
margin-left: 0px;
|
147
|
-
border:1px solid #e1e1e1;
|
148
|
-
border-left: 10px solid $brand-primary;
|
149
|
-
&:before {
|
150
|
-
content: open-quote;
|
151
|
-
display: inline;
|
152
|
-
line-height: 0;
|
153
|
-
left: -10px;
|
154
|
-
position: relative;
|
155
|
-
top: 30px;
|
156
|
-
color: $brand-primary;
|
157
|
-
font-size: 3em;
|
158
|
-
}
|
159
|
-
}
|
160
|
-
.members-img {
|
161
|
-
width: auto;
|
162
|
-
height: 100px;
|
163
|
-
object-fit: contain;
|
164
|
-
}
|
165
|
-
//Form Styles
|
166
|
-
label.error.valid {
|
167
|
-
color: #3c763d;
|
168
|
-
}
|
169
|
-
label.error {
|
170
|
-
padding: 5px;
|
171
|
-
color: #a94442;
|
172
|
-
}
|
173
|
-
label.control-label {
|
174
|
-
margin: 0;
|
175
|
-
}
|
176
|
-
|
177
|
-
//Search Page
|
178
|
-
#searchIframe {
|
179
|
-
border:none;
|
180
|
-
top: -60px;
|
181
|
-
height: 1000px;
|
182
|
-
}
|
183
|
-
#searchEmbed {
|
184
|
-
margin-bottom: 20px;
|
185
|
-
display:block;
|
186
|
-
overflow: auto;
|
187
|
-
}
|
188
|
-
/* --------------- Text Selection -------------------*/
|
189
|
-
::selection {
|
190
|
-
background: $brand-primary; /* WebKit/Blink Browsers */
|
191
|
-
color: #fff;
|
192
|
-
}
|
193
|
-
::-moz-selection {
|
194
|
-
background: $brand-primary; /* Gecko Browsers */
|
195
|
-
color: #fff;
|
196
|
-
}
|
197
|
-
|
198
|
-
|
199
|
-
//Headings
|
200
|
-
#wrapper h1, #wrapper h2, #wrapper h3, #wrapper h4, #wrapper h5,#wrapper h6 {
|
201
|
-
font-family: $font-family-sans-serif;
|
202
|
-
line-height: 1.1;
|
203
|
-
color: rgba(0,0,0,.84);
|
204
|
-
font-weight: bold;
|
205
|
-
}
|
206
|
-
|
207
|
-
//Horizontal Rule Styling
|
208
|
-
hr {
|
209
|
-
border-top: 1px solid #eee;
|
210
|
-
}
|
211
|
-
|
212
|
-
// Anchors
|
213
|
-
a.anchor {
|
214
|
-
display: block;
|
215
|
-
position: relative;
|
216
|
-
top: -250px;
|
217
|
-
visibility: hidden;
|
218
|
-
}
|
219
|
-
|
220
|
-
//Move the contact-thanks div up
|
221
|
-
div#contact-thanks {
|
222
|
-
margin-top: -20px;
|
223
|
-
}
|
224
|
-
|
225
|
-
/*-------------Paragraphs --------------------*/
|
226
|
-
#wrapper p {
|
227
|
-
font-family: $font-family-sans-serif;
|
228
|
-
font-size: 20px;
|
229
|
-
color: $text-color;
|
230
|
-
line-height: 1.66em;
|
231
|
-
word-wrap: break-word;
|
232
|
-
@media(max-width: $screen-sm-min){
|
233
|
-
font-size: 18px;
|
234
|
-
}
|
235
|
-
}
|
236
|
-
#wrapper #content-container ol {
|
237
|
-
margin-bottom: 30px;
|
238
|
-
}
|
239
|
-
#wrapper ol {
|
240
|
-
font-size: 18px;
|
241
|
-
color: rgba(0,0,0,0.84);
|
242
|
-
}
|
243
|
-
#wrapper ul, #wrapper ol {
|
244
|
-
font-size: 20px;
|
245
|
-
font-family: $font-family-sans-serif;
|
246
|
-
@media(max-width: $screen-sm-min){
|
247
|
-
font-size: 18px;
|
248
|
-
}
|
249
|
-
}
|
250
|
-
.container-fluid p.justify {
|
251
|
-
font-size: 16px;
|
252
|
-
text-align: justify;
|
253
|
-
line-height: 1.66em;
|
254
|
-
}
|
255
|
-
|
256
|
-
.container-fluid h2 {
|
257
|
-
font-size: 30px;
|
258
|
-
color: #3D383E;
|
259
|
-
font-weight: 200;
|
260
|
-
text-transform: none;
|
261
|
-
}
|
262
|
-
/* Padded Para */
|
263
|
-
.padded-para{
|
264
|
-
padding:20px;
|
265
|
-
}
|
266
|
-
/* Spaced Paragraph */
|
267
|
-
#spaced-para{
|
268
|
-
font-size: 18px;
|
269
|
-
line-height: 40px;
|
270
|
-
}
|
271
|
-
/* Justified Paragraph */
|
272
|
-
p .justified{
|
273
|
-
text-align: justify;
|
274
|
-
text-justify: inter-word;
|
275
|
-
}
|
276
|
-
/* Shape Divider - Home Page */
|
277
|
-
.row.shape-divider {
|
278
|
-
background-color: $brand-primary;
|
279
|
-
}
|
280
|
-
// Not for breadcrumb / nav / footer
|
281
|
-
.container-fluid ul { font-size:18px; }
|
282
|
-
.container-fluid ol { font-size: 18px;}
|
283
|
-
// Padded row css
|
284
|
-
.padded-row {
|
285
|
-
padding: 100px 0;
|
286
|
-
}
|
287
|
-
//Homepage Sub Tag
|
288
|
-
p.sub-tag {
|
289
|
-
width: 65%;
|
290
|
-
margin-bottom: 20px;
|
291
|
-
margin-top: 10px;
|
292
|
-
font-size: 19px;
|
293
|
-
color: #FFF;
|
294
|
-
}
|
295
|
-
|
296
|
-
// Buttons
|
297
|
-
#buttons > a
|
298
|
-
{
|
299
|
-
background: transparent;
|
300
|
-
color: $navbar-text-color;
|
301
|
-
border-color: $navbar-text-color;
|
302
|
-
-webkit-border-radius: 2px;
|
303
|
-
-moz-border-radius: 2px;
|
304
|
-
border-radius: 2px;
|
305
|
-
padding: 10px 16px;
|
306
|
-
font-size: 15px;
|
307
|
-
line-height: 1.3333333;
|
308
|
-
transition: all 500ms ease;
|
309
|
-
}
|
310
|
-
#buttons > a:hover
|
311
|
-
{
|
312
|
-
background: $navbar-text-color;
|
313
|
-
color: $navbar-inverse-bg;
|
314
|
-
border-color: $navbar-text-color;
|
315
|
-
}
|
316
|
-
|
317
|
-
//Bottom Border Five Pixels.
|
318
|
-
.bottom-border-five{ margin-bottom: 5px; }
|
319
|
-
|
320
|
-
//Alternate row for theme
|
321
|
-
.alternate-row {
|
322
|
-
background-color: #E5E5E5;
|
323
|
-
padding: 40px 0;
|
324
|
-
}
|
325
|
-
|
326
|
-
.small-img{
|
327
|
-
height:100px;
|
328
|
-
width:auto;
|
329
|
-
}
|
330
|
-
|
331
|
-
@media (min-width: $screen-md) {
|
332
|
-
.partners-panel {
|
333
|
-
margin-top:80px;
|
334
|
-
}
|
335
|
-
.margin-image {
|
336
|
-
padding:40px;
|
337
|
-
}
|
338
|
-
|
339
|
-
}
|
340
|
-
|
341
|
-
.margin-top { margin-top: 40px;}
|
342
|
-
|
343
|
-
.panel-body.members-panel-body {
|
344
|
-
margin-top: 0;
|
345
|
-
border: 0;
|
346
|
-
}
|
347
|
-
.new-panel .panel-primary > .panel-heading {
|
348
|
-
color: #000000;
|
349
|
-
background-color: transparent;
|
350
|
-
border:0;
|
351
|
-
}
|
352
|
-
|
353
|
-
// Iframe for Search page.
|
354
|
-
#searchIframe {
|
355
|
-
border:none;
|
356
|
-
}
|
357
|
-
|
358
|
-
//Vertical Center
|
359
|
-
.vcenter {
|
360
|
-
display: inline-block;
|
361
|
-
vertical-align: middle;
|
362
|
-
float: none;
|
363
|
-
}
|
364
|
-
|
365
|
-
//Contact Hero Banner
|
366
|
-
.contact-hero{
|
367
|
-
height:200px;
|
368
|
-
line-height: 200px;
|
369
|
-
text-align: center;
|
370
|
-
font-size:18px;
|
371
|
-
color: #fff;
|
372
|
-
background: url() repeat;
|
373
|
-
}
|
374
|
-
|
375
|
-
//----------BOOTSTRAP STYLES ----------------
|
376
|
-
|
377
|
-
.panel-primary {
|
378
|
-
border:0;
|
379
|
-
}
|
380
|
-
|
381
|
-
// Bootstrap Glyphicon Override.
|
382
|
-
.glyphicon {
|
383
|
-
width: 14px;
|
384
|
-
height: 14px;
|
385
|
-
}
|
386
|
-
//Remove button focus
|
387
|
-
.btn:focus,.btn:active:focus,.btn.active:focus,
|
388
|
-
.btn.focus,.btn:active.focus,.btn.active.focus {
|
389
|
-
outline: none;
|
390
|
-
}
|
391
|
-
|
392
|
-
.container .jumbotron, .container-fluid .jumbotron {
|
393
|
-
border-radius: 0px;
|
394
|
-
}
|
395
|
-
|
396
|
-
@media(max-width:$screen-sm-min){
|
397
|
-
.partners-panel {
|
398
|
-
height: auto;
|
399
|
-
}
|
400
|
-
}
|
401
|
-
|
402
|
-
|
403
|
-
// Cookie Consent Setup
|
404
|
-
|
405
|
-
a.cc-link {
|
406
|
-
color: $cookie-consent-text !important;
|
407
|
-
}
|
408
|
-
|
409
|
-
//Mailchimp
|
410
|
-
button#mc-embedded-subscribe {
|
411
|
-
background-color: $navbar-inverse-bg;
|
412
|
-
color: $navbar-text-color;
|
413
|
-
transition: all 1s ease;
|
414
|
-
}
|
415
|
-
button#mc-embedded-subscribe:hover {
|
416
|
-
background-color: lighten($footer-bg-color, 20%);
|
417
|
-
color: $navbar-text-color;
|
418
|
-
transition: all 1s ease;
|
419
|
-
}
|
420
|
-
|
421
|
-
.coloured-bp{
|
422
|
-
color: $brand-primary;
|
423
|
-
font-size:12px;
|
424
|
-
}
|
425
|
-
|
426
|
-
|
427
|
-
// Padding Classes
|
428
|
-
|
429
|
-
.no-padding-left {
|
430
|
-
padding-left: 0;
|
431
|
-
}
|
432
|
-
|
433
|
-
.no-padding {
|
434
|
-
padding: 0;
|
435
|
-
}
|
436
|
-
|
437
|
-
.text-bold {
|
438
|
-
font-weight: 700;
|
439
|
-
}
|
440
|
-
|
441
|
-
.meta {
|
442
|
-
font-size: 12px;
|
443
|
-
color: rgba(0, 0, 0, .4);
|
444
|
-
}
|
445
|
-
|
446
|
-
.meta a {
|
447
|
-
text-decoration: none;
|
448
|
-
color: rgba(0, 0, 0, .4);
|
449
|
-
}
|
450
|
-
|
451
|
-
.meta a:hover {
|
452
|
-
color: rgba(0, 0, 0, .87);
|
453
|
-
}
|
454
|
-
|
455
|
-
|
456
|
-
//Cognito Forms
|
457
|
-
//Submit Button
|
458
|
-
button#c-submit-button {
|
459
|
-
background-color: $brand-primary;
|
460
|
-
border: 1px solid black;
|
461
|
-
}
|
462
|
-
|
463
|
-
.c-forms-form-title {
|
464
|
-
display: none;
|
465
|
-
}
|
466
|
-
|
467
|
-
|
468
|
-
//Style for search
|
469
|
-
#searchEmbed {
|
470
|
-
margin-bottom: 20px;
|
471
|
-
display:block;
|
472
|
-
overflow: auto;
|
473
|
-
}
|
474
|
-
|
475
|
-
|
476
|
-
@media (max-width: $screen-md-min){
|
477
|
-
h1#home-page-title {
|
478
|
-
font-size: 25px;
|
479
|
-
}
|
480
|
-
//Remove the padding from columns on mobile views
|
481
|
-
.container-fluid .col-md-3, .container-fluid .col-md-9 {
|
482
|
-
padding-left:0;
|
483
|
-
padding-right:0;
|
484
|
-
}
|
485
|
-
}
|
486
|
-
|
487
|
-
//Remove italics from icons - Google Chrome.
|
488
|
-
|
489
|
-
i {
|
490
|
-
font-style: normal;
|
491
|
-
}
|
492
|
-
|
493
|
-
/* ----------------- Missing Bootstrap 3 5ths Columns -----------------*/
|
494
|
-
|
495
|
-
.col-xs-5ths,
|
496
|
-
.col-sm-5ths,
|
497
|
-
.col-md-5ths,
|
498
|
-
.col-lg-5ths {
|
499
|
-
position: relative;
|
500
|
-
min-height: 1px;
|
501
|
-
padding-right: 15px;
|
502
|
-
padding-left: 15px;
|
503
|
-
}
|
504
|
-
|
505
|
-
.col-xs-5ths {
|
506
|
-
width: 20%;
|
507
|
-
float: left;
|
508
|
-
}
|
509
|
-
|
510
|
-
@media (min-width: $screen-xs-min) {
|
511
|
-
.col-sm-5ths {
|
512
|
-
width: 20%;
|
513
|
-
float: left;
|
514
|
-
}
|
515
|
-
}
|
516
|
-
|
517
|
-
@media (min-width: $screen-sm-min) {
|
518
|
-
.col-md-5ths {
|
519
|
-
width: 20%;
|
520
|
-
float: left;
|
521
|
-
}
|
522
|
-
}
|
523
|
-
|
524
|
-
@media (min-width: $screen-md-min) {
|
525
|
-
.col-lg-5ths {
|
526
|
-
width: 20%;
|
527
|
-
float: left;
|
528
|
-
}
|
529
|
-
}
|
530
|
-
|
531
|
-
/*--------------------- Mailchimp Newsletter --------------------*/
|
532
|
-
input#mce-EMAIL {
|
533
|
-
border: 0!important;
|
534
|
-
border-radius: 0 !important;
|
535
|
-
margin-bottom: 10px;
|
536
|
-
outline: none;
|
537
|
-
border: none !important;
|
538
|
-
-webkit-box-shadow: none !important;
|
539
|
-
-moz-box-shadow: none !important;
|
540
|
-
box-shadow: none !important;
|
541
|
-
|
542
|
-
}
|
543
|
-
|
544
|
-
input#mce-FNAME {
|
545
|
-
border: 0!important;
|
546
|
-
border-radius: 0 !important;
|
547
|
-
margin-bottom: 10px;
|
548
|
-
outline: none;
|
549
|
-
border: none !important;
|
550
|
-
-webkit-box-shadow: none !important;
|
551
|
-
-moz-box-shadow: none !important;
|
552
|
-
box-shadow: none !important;
|
553
|
-
}
|
554
|
-
|
555
|
-
input#mce-LNAME {
|
556
|
-
border: 0!important;
|
557
|
-
border-radius: 0 !important;
|
558
|
-
margin-bottom: 10px;
|
559
|
-
outline: none;
|
560
|
-
outline: none;
|
561
|
-
border: none !important;
|
562
|
-
-webkit-box-shadow: none !important;
|
563
|
-
-moz-box-shadow: none !important;
|
564
|
-
box-shadow: none !important;
|
565
|
-
}
|
566
|
-
|
567
|
-
button#mc-embedded-subscribe {
|
568
|
-
border:0;
|
569
|
-
border-radius:0;
|
570
|
-
background-color: $brand-primary;
|
571
|
-
color: white;
|
572
|
-
transition: all 200ms ease;
|
573
|
-
}
|
574
|
-
|
575
|
-
button#mc-embedded-subscribe:hover{
|
576
|
-
background-color: #252525;
|
577
|
-
color: white;
|
578
|
-
transition: all 200ms ease;
|
579
|
-
}
|
580
|
-
|
581
|
-
/* Repsonsive Media Embed */
|
582
|
-
.embed-responsive-16by9 {
|
583
|
-
padding-bottom: 56.25%;
|
584
|
-
margin-bottom: 25px;
|
585
|
-
}
|
586
|
-
|
587
|
-
/* Right Aligned Image*/
|
588
|
-
img.img-responsive.right-aligned-image {
|
589
|
-
float: right;
|
590
|
-
width: 30%;
|
591
|
-
margin: 30px;
|
592
|
-
}
|
593
|
-
|
594
|
-
@media(max-width:$screen-xs-min){
|
595
|
-
|
596
|
-
/* Mobile Screens - Right Aligned Images */
|
597
|
-
img.img-responsive.right-aligned-image.lazyloaded {
|
598
|
-
float: none;
|
599
|
-
width: 100%;
|
600
|
-
margin-left: auto;
|
601
|
-
margin-right: auto;
|
602
|
-
margin-top: -9px;
|
603
|
-
margin-bottom: -15px;
|
604
|
-
}
|
605
|
-
|
606
|
-
}
|
607
|
-
|
608
|
-
/* Wordpress Styles */
|
609
|
-
.container-fluid blockquote, .container-fluid code, .container-fluid dl, .container-fluid fieldset,
|
610
|
-
.container-fluid p, .container-fluid pre, .container-fluid table{
|
611
|
-
margin-bottom: 25px;
|
612
|
-
}
|
613
|
-
|
614
|
-
#tabbed-nav-bar {
|
615
|
-
margin-bottom: 25px;
|
616
|
-
}
|
617
|
-
|
618
|
-
div#tabbed-nav-bar-collapse {
|
619
|
-
background-color: white;
|
620
|
-
}
|
621
|
-
ul#tab-row {
|
622
|
-
margin-bottom: 20px;
|
623
|
-
}
|
624
|
-
|
625
|
-
.container-fluid a:hover {
|
626
|
-
text-decoration: none;
|
627
|
-
color: darken($brand-primary, 20%);
|
628
|
-
}
|
629
|
-
|
630
|
-
.container-fluid ul {
|
631
|
-
color: $text-color;
|
632
|
-
font-size: 18px;
|
633
|
-
}
|
634
|
-
|
635
|
-
/* Blockquote Styles*/
|
636
|
-
blockquote{
|
637
|
-
background-color: #f6f6f6;
|
638
|
-
}
|
639
|
-
|
640
|
-
blockquote:before {
|
641
|
-
position: relative;
|
642
|
-
background-image:url('data:image/svg+xml; utf8, <svg class="mk-svg-icon" xmlns="http://www.w3.org/2000/svg" fill="#ddd" viewBox="0 0 1664 1792"><path d="M768 960v384q0 80-56 136t-136 56h-384q-80 0-136-56t-56-136v-704q0-104 40.5-198.5t109.5-163.5 163.5-109.5 198.5-40.5h64q26 0 45 19t19 45v128q0 26-19 45t-45 19h-64q-106 0-181 75t-75 181v32q0 40 28 68t68 28h224q80 0 136 56t56 136zm896 0v384q0 80-56 136t-136 56h-384q-80 0-136-56t-56-136v-704q0-104 40.5-198.5t109.5-163.5 163.5-109.5 198.5-40.5h64q26 0 45 19t19 45v128q0 26-19 45t-45 19h-64q-106 0-181 75t-75 181v32q0 40 28 68t68 28h224q80 0 136 56t56 136z"></path></svg>');
|
643
|
-
content: "";
|
644
|
-
display: block;
|
645
|
-
left: 0px;
|
646
|
-
top: 0px;
|
647
|
-
width: 32px;
|
648
|
-
height: 35px;
|
649
|
-
}
|
650
|
-
#content-container{
|
651
|
-
padding-top:20px;
|
652
|
-
}
|
653
|
-
.row.content {
|
654
|
-
position: relative;
|
655
|
-
background-color: white;
|
656
|
-
}
|
657
|
-
/* VCenter Img*/
|
658
|
-
.vcenter-img {
|
659
|
-
display: inline-block;
|
660
|
-
vertical-align: middle;
|
661
|
-
height: 110px;
|
662
|
-
}
|
663
|
-
|
664
|
-
#wrapper {
|
665
|
-
overflow-x: hidden;
|
666
|
-
}
|
667
|
-
|
668
|
-
.container-fluid h1 {
|
669
|
-
font-size: 36px;
|
670
|
-
margin-top: 0;
|
671
|
-
}
|
672
|
-
|
673
|
-
.container-fluid h1, .container-fluid h2, .container-fluid h3, .container-fluid h4, .container-fluid h5 {
|
674
|
-
color: #393836;
|
675
|
-
}
|
676
|
-
|
677
|
-
/* Bootstrap Panels*/
|
678
|
-
.container-fluid .panel-body {
|
679
|
-
padding: 0;
|
680
|
-
border-radius: 0;
|
681
|
-
}
|
682
|
-
|
683
|
-
.container-fluid .panel.panel-primary {
|
684
|
-
padding: 0;
|
685
|
-
border-radius: 0px;
|
686
|
-
}
|
687
|
-
|
688
|
-
.container-fluid .panel-heading {
|
689
|
-
border-radius: 0px;
|
690
|
-
border: 1px solid $brand-primary;
|
691
|
-
}
|
692
|
-
|
693
|
-
.container-fluid h3.panel-title {
|
694
|
-
color: $navbar-text-color;
|
695
|
-
}
|
696
|
-
|
697
|
-
ul {
|
698
|
-
font-size: 18px;
|
699
|
-
}
|
700
|
-
// FlexBox
|
701
|
-
.flex-center {
|
702
|
-
display: flex;
|
703
|
-
align-items: center;
|
704
|
-
justify-content: center;
|
705
|
-
flex-direction: column;
|
706
|
-
flex: 1 1 auto;
|
707
|
-
align-self: center;
|
708
|
-
}
|
709
|
-
.flex-container {
|
710
|
-
display: flex;
|
711
|
-
flex-direction: column;
|
712
|
-
align-items: center;
|
713
|
-
}
|
714
|
-
.container.flex-container {
|
715
|
-
height: 100%;
|
716
|
-
}
|
717
|
-
.bg-row {
|
718
|
-
background-position: center center;
|
719
|
-
background-size: cover;
|
720
|
-
background-attachment: scroll;
|
721
|
-
}
|
722
|
-
.bg-row.fixed{
|
723
|
-
background-attachment: fixed;
|
724
|
-
}
|
725
|
-
// Email Button
|
726
|
-
.container-fluid .email {
|
727
|
-
height: 50px;
|
728
|
-
background-color: $brand-primary;
|
729
|
-
width: 200px;
|
730
|
-
line-height: 30px;
|
731
|
-
text-align: center;
|
732
|
-
color: white;
|
733
|
-
font-weight: bold;
|
734
|
-
border: 1px solid #9e9e9e;
|
735
|
-
margin-left: auto;
|
736
|
-
margin-right: auto;
|
737
|
-
border-radius: 0;
|
738
|
-
transition: all 200ms ease;
|
739
|
-
}
|
740
|
-
.container-fluid .email:hover {
|
741
|
-
background-color: #3a3a3a;
|
742
|
-
border: 1px solid #000000;
|
743
|
-
color:white;
|
744
|
-
}
|
745
|
-
.padded-row-30 {
|
746
|
-
padding: 30px 0;
|
747
|
-
}
|
748
|
-
.content-row {
|
749
|
-
background-color: white;
|
750
|
-
position: relative;
|
751
|
-
}
|
752
|
-
#wrapper p.home-text {
|
753
|
-
font-size: 22px;
|
754
|
-
text-align: center;
|
755
|
-
}
|
756
|
-
#wrapper .text-white {
|
757
|
-
color:white;
|
758
|
-
}
|
759
|
-
#wrapper a.btn.btn-block-center {
|
760
|
-
display:block;
|
761
|
-
width:100px;
|
762
|
-
margin: 10px auto;
|
763
|
-
position: relative;
|
764
|
-
}
|
765
|
-
$spaceamounts: (10, 20, 30, 40, 50, 75, 100); // Adjust this to include the pixel amounts you need.
|
766
|
-
$sides: (top, bottom, left, right); // Leave this variable alone
|
767
|
-
|
768
|
-
@each $space in $spaceamounts {
|
769
|
-
@each $side in $sides {
|
770
|
-
.m-#{str-slice($side, 0, 1)}-#{$space} {
|
771
|
-
margin-#{$side}: #{$space}px !important;
|
772
|
-
}
|
773
|
-
|
774
|
-
.p-#{str-slice($side, 0, 1)}-#{$space} {
|
775
|
-
padding-#{$side}: #{$space}px !important;
|
776
|
-
}
|
777
|
-
}
|
778
|
-
}
|
779
|
-
@media(max-width: $screen-sm-min - 1){
|
780
|
-
.text-center-mob {
|
781
|
-
text-align:center !important;
|
782
|
-
}
|
783
|
-
}
|
784
|
-
|
785
|
-
// Responsive Padding/Margin classes
|
786
|
-
$margin-none: 0;
|
787
|
-
$margin-sm: 5;
|
788
|
-
$margin-base: 15;
|
789
|
-
$margin-lg: 30;
|
790
|
-
$margin-xl: 50;
|
791
|
-
$margin-xxl: 100;
|
792
|
-
|
793
|
-
$padding-xxl: 100;
|
794
|
-
$padding-xl: 50;
|
795
|
-
$padding-lg: 30;
|
796
|
-
$padding-base: 15;
|
797
|
-
$padding-sm: 5;
|
798
|
-
$padding-none: 0;
|
799
|
-
|
800
|
-
@mixin make-paddings($class, $padding){
|
801
|
-
.p-#{$class}-#{$padding} { padding: $padding * 1px !important; }
|
802
|
-
.pl-#{$class}-#{$padding} { padding-left: $padding * 1px !important; }
|
803
|
-
.pr-#{$class}-#{$padding} { padding-right: $padding * 1px !important; }
|
804
|
-
.pt-#{$class}-#{$padding} { padding-top: $padding * 1px !important; }
|
805
|
-
.pb-#{$class}-#{$padding} { padding-bottom: $padding * 1px !important; }
|
806
|
-
.pv-#{$class}-#{$padding} { @extend .pt-#{$class}-#{$padding}; @extend .pb-#{$class}-#{$padding}; }
|
807
|
-
.ph-#{$class}-#{$padding} { @extend .pl-#{$class}-#{$padding}; @extend .pr-#{$class}-#{$padding}; }
|
808
|
-
}
|
809
|
-
@mixin make-margins($class, $margin){
|
810
|
-
.m-#{$class}-#{$margin} { margin: $margin * 1px !important; }
|
811
|
-
.ml-#{$class}-#{$margin} { margin-left: $margin * 1px !important; }
|
812
|
-
.mr-#{$class}-#{$margin} { margin-right: $margin * 1px !important; }
|
813
|
-
.mt-#{$class}-#{$margin} { margin-top: $margin * 1px !important; }
|
814
|
-
.mb-#{$class}-#{$margin} { margin-bottom: $margin * 1px !important; }
|
815
|
-
.mv-#{$class}-#{$margin} { @extend .mt-#{$class}-#{$margin}; @extend .mb-#{$class}-#{$margin}; }
|
816
|
-
.mh-#{$class}-#{$margin} { @extend .ml-#{$class}-#{$margin}; @extend .mr-#{$class}-#{$margin}; }
|
817
|
-
}
|
818
|
-
|
819
|
-
@mixin make-all-paddings($class){
|
820
|
-
@include make-paddings($class, $padding-none);
|
821
|
-
@include make-paddings($class, $padding-sm);
|
822
|
-
@include make-paddings($class, $padding-base);
|
823
|
-
@include make-paddings($class, $padding-lg);
|
824
|
-
@include make-paddings($class, $padding-xl);
|
825
|
-
@include make-paddings($class, $padding-xxl);
|
826
|
-
}
|
827
|
-
@mixin make-all-margins($class){
|
828
|
-
@include make-margins($class, $margin-none);
|
829
|
-
@include make-margins($class, $margin-sm);
|
830
|
-
@include make-margins($class, $margin-base);
|
831
|
-
@include make-margins($class, $margin-lg);
|
832
|
-
@include make-margins($class, $margin-xl);
|
833
|
-
@include make-margins($class, $margin-xxl);
|
834
|
-
}
|
835
|
-
|
836
|
-
|
837
|
-
@include make-all-paddings(xs);
|
838
|
-
@include make-all-margins(xs);
|
839
|
-
@media (min-width: $screen-sm-min) {
|
840
|
-
@include make-all-paddings(sm);
|
841
|
-
@include make-all-margins(sm);
|
842
|
-
}
|
843
|
-
@media (min-width: $screen-md-min) {
|
844
|
-
@include make-all-paddings(md);
|
845
|
-
@include make-all-margins(md);
|
846
|
-
}
|
847
|
-
@media (min-width: $screen-lg-min) {
|
848
|
-
@include make-all-paddings(lg);
|
849
|
-
@include make-all-margins(lg);
|
850
|
-
}
|
851
|
-
|
852
|
-
span.new-post {
|
853
|
-
background-color: $brand-primary;
|
854
|
-
color: white;
|
855
|
-
padding: 4px;
|
856
|
-
border-radius: 3px;
|
857
|
-
}
|
858
|
-
// ScrollBar Style
|
859
|
-
body::-webkit-scrollbar {
|
860
|
-
width: 1em;
|
861
|
-
}
|
862
|
-
body::-webkit-scrollbar-track {
|
863
|
-
background-color: $navbar-inverse-bg;
|
864
|
-
}
|
865
|
-
body::-webkit-scrollbar-thumb {
|
866
|
-
background-color: $brand-primary;
|
867
|
-
}
|
868
|
-
span.last-modified-at {
|
869
|
-
color: $footer-text-color;
|
870
|
-
font-size: 14px;
|
871
|
-
}
|
1
|
+
// Body Style
|
2
|
+
body {
|
3
|
+
background-color: $navbar-inverse-bg;
|
4
|
+
letter-spacing: 0.5px;
|
5
|
+
overflow-x: hidden;
|
6
|
+
height : 100%;
|
7
|
+
overflow: auto;
|
8
|
+
font-family: $font-family-sans-serif;
|
9
|
+
-webkit-font-smoothing: antialiased;
|
10
|
+
}
|
11
|
+
/* ------------ Main Container Style margin accounts for Nav ----------- */
|
12
|
+
.container-fluid.main{
|
13
|
+
overflow-x: hidden;
|
14
|
+
}
|
15
|
+
.container-fluid.home{
|
16
|
+
overflow-x: hidden;
|
17
|
+
}
|
18
|
+
.content-row{
|
19
|
+
background-color:$body-bg;
|
20
|
+
}
|
21
|
+
// Iphone Bug Fix
|
22
|
+
html.ios7 body {
|
23
|
+
height: 100%;
|
24
|
+
position: fixed;
|
25
|
+
width: 100%;
|
26
|
+
}
|
27
|
+
.ext-left {
|
28
|
+
float: left;
|
29
|
+
}
|
30
|
+
.ext-right {
|
31
|
+
height: auto;
|
32
|
+
vertical-align: middle;
|
33
|
+
display: table-cell;
|
34
|
+
padding-right: 10px;
|
35
|
+
padding-left: 10px;
|
36
|
+
}
|
37
|
+
button.owl-dot {
|
38
|
+
background-color: transparent;
|
39
|
+
border: 0;
|
40
|
+
outline: none;
|
41
|
+
}
|
42
|
+
button.owl-prev, button.owl-next {
|
43
|
+
outline: none;
|
44
|
+
border: 0;
|
45
|
+
}
|
46
|
+
.mc-unsubscribe a {
|
47
|
+
position: relative;
|
48
|
+
bottom: 0;
|
49
|
+
font-size: 12px;
|
50
|
+
top: 30px;
|
51
|
+
float: right;
|
52
|
+
margin-right: 15px;
|
53
|
+
}
|
54
|
+
a.btn.btn-primary {
|
55
|
+
background-color:#3c3b39;
|
56
|
+
color:white;
|
57
|
+
border-radius:0px;
|
58
|
+
border:0;
|
59
|
+
}
|
60
|
+
a.btn.btn-primary:hover {
|
61
|
+
background-color:$brand-primary;
|
62
|
+
}
|
63
|
+
#wrapper {
|
64
|
+
a.btn {
|
65
|
+
transition: all 300ms ease;
|
66
|
+
border-radius: 2px;
|
67
|
+
&:hover {
|
68
|
+
transform: translateY(-2px);
|
69
|
+
color:#fff;
|
70
|
+
@extend .drop_shadow;
|
71
|
+
}
|
72
|
+
}
|
73
|
+
}
|
74
|
+
|
75
|
+
// Edit me on github buttons
|
76
|
+
.github-edit {
|
77
|
+
background-color: #fff;
|
78
|
+
}
|
79
|
+
#wrapper a[type="button"] {
|
80
|
+
-webkit-appearance: none;
|
81
|
+
}
|
82
|
+
#wrapper div#github_controls a.btn {
|
83
|
+
-webkit-appearance: none;
|
84
|
+
}
|
85
|
+
span.edit-me-on-github-text {
|
86
|
+
font-size: 12px;
|
87
|
+
}
|
88
|
+
.edit-me-on-github.text-center {
|
89
|
+
float: right;
|
90
|
+
}
|
91
|
+
i.edit-on-github-icon.icon-github-circled.center-block {
|
92
|
+
font-size: 40px;
|
93
|
+
}
|
94
|
+
div#github_controls {
|
95
|
+
margin: 10px 0;
|
96
|
+
}
|
97
|
+
div#github_controls a.btn {
|
98
|
+
padding:5px;
|
99
|
+
height: 50px;
|
100
|
+
background-color: #fff;
|
101
|
+
color: #333;
|
102
|
+
padding-left: 15px;
|
103
|
+
padding-right: 15px;
|
104
|
+
border: 1px solid #f0f0f0;
|
105
|
+
|
106
|
+
transition: all 500ms ease;
|
107
|
+
}
|
108
|
+
|
109
|
+
div#github_controls a.btn:hover {
|
110
|
+
background-color: #333;
|
111
|
+
color: #fff;
|
112
|
+
}
|
113
|
+
span.top-text {
|
114
|
+
display: block;
|
115
|
+
text-transform: uppercase;
|
116
|
+
}
|
117
|
+
span.bottom-text {
|
118
|
+
display: block;
|
119
|
+
font-size: 11px;
|
120
|
+
}
|
121
|
+
.drop_shadow {
|
122
|
+
-webkit-box-shadow: 0px 0px 35px -4px rgba(0,0,0,0.85);
|
123
|
+
-moz-box-shadow: 0px 0px 35px -4px rgba(0,0,0,0.85);
|
124
|
+
box-shadow: 0px 0px 35px -4px rgba(0,0,0,0.85);
|
125
|
+
}
|
126
|
+
|
127
|
+
i.icon-github-circled.center-block {
|
128
|
+
font-size: 24px;
|
129
|
+
}
|
130
|
+
div#github_controls a#github_home:hover {
|
131
|
+
color: #fff;
|
132
|
+
background-color:#333;
|
133
|
+
}
|
134
|
+
div#github_controls a#github_home {
|
135
|
+
background-color: #fff;
|
136
|
+
color: #333;
|
137
|
+
transition: all 250ms ease;
|
138
|
+
}
|
139
|
+
#wrapper blockquote{
|
140
|
+
background: #f9f9f9;
|
141
|
+
margin: .5em 10px;
|
142
|
+
padding: 0 10px;
|
143
|
+
quotes: "\201C""\201D""\2018""\2019";
|
144
|
+
padding: 20px 20px;
|
145
|
+
line-height: 1.4;
|
146
|
+
margin-left: 0px;
|
147
|
+
border:1px solid #e1e1e1;
|
148
|
+
border-left: 10px solid $brand-primary;
|
149
|
+
&:before {
|
150
|
+
content: open-quote;
|
151
|
+
display: inline;
|
152
|
+
line-height: 0;
|
153
|
+
left: -10px;
|
154
|
+
position: relative;
|
155
|
+
top: 30px;
|
156
|
+
color: $brand-primary;
|
157
|
+
font-size: 3em;
|
158
|
+
}
|
159
|
+
}
|
160
|
+
.members-img {
|
161
|
+
width: auto;
|
162
|
+
height: 100px;
|
163
|
+
object-fit: contain;
|
164
|
+
}
|
165
|
+
//Form Styles
|
166
|
+
label.error.valid {
|
167
|
+
color: #3c763d;
|
168
|
+
}
|
169
|
+
label.error {
|
170
|
+
padding: 5px;
|
171
|
+
color: #a94442;
|
172
|
+
}
|
173
|
+
label.control-label {
|
174
|
+
margin: 0;
|
175
|
+
}
|
176
|
+
|
177
|
+
//Search Page
|
178
|
+
#searchIframe {
|
179
|
+
border:none;
|
180
|
+
top: -60px;
|
181
|
+
height: 1000px;
|
182
|
+
}
|
183
|
+
#searchEmbed {
|
184
|
+
margin-bottom: 20px;
|
185
|
+
display:block;
|
186
|
+
overflow: auto;
|
187
|
+
}
|
188
|
+
/* --------------- Text Selection -------------------*/
|
189
|
+
::selection {
|
190
|
+
background: $brand-primary; /* WebKit/Blink Browsers */
|
191
|
+
color: #fff;
|
192
|
+
}
|
193
|
+
::-moz-selection {
|
194
|
+
background: $brand-primary; /* Gecko Browsers */
|
195
|
+
color: #fff;
|
196
|
+
}
|
197
|
+
|
198
|
+
|
199
|
+
//Headings
|
200
|
+
#wrapper h1, #wrapper h2, #wrapper h3, #wrapper h4, #wrapper h5,#wrapper h6 {
|
201
|
+
font-family: $font-family-sans-serif;
|
202
|
+
line-height: 1.1;
|
203
|
+
color: rgba(0,0,0,.84);
|
204
|
+
font-weight: bold;
|
205
|
+
}
|
206
|
+
|
207
|
+
//Horizontal Rule Styling
|
208
|
+
hr {
|
209
|
+
border-top: 1px solid #eee;
|
210
|
+
}
|
211
|
+
|
212
|
+
// Anchors
|
213
|
+
a.anchor {
|
214
|
+
display: block;
|
215
|
+
position: relative;
|
216
|
+
top: -250px;
|
217
|
+
visibility: hidden;
|
218
|
+
}
|
219
|
+
|
220
|
+
//Move the contact-thanks div up
|
221
|
+
div#contact-thanks {
|
222
|
+
margin-top: -20px;
|
223
|
+
}
|
224
|
+
|
225
|
+
/*-------------Paragraphs --------------------*/
|
226
|
+
#wrapper p {
|
227
|
+
font-family: $font-family-sans-serif;
|
228
|
+
font-size: 20px;
|
229
|
+
color: $text-color;
|
230
|
+
line-height: 1.66em;
|
231
|
+
word-wrap: break-word;
|
232
|
+
@media(max-width: $screen-sm-min){
|
233
|
+
font-size: 18px;
|
234
|
+
}
|
235
|
+
}
|
236
|
+
#wrapper #content-container ol {
|
237
|
+
margin-bottom: 30px;
|
238
|
+
}
|
239
|
+
#wrapper ol {
|
240
|
+
font-size: 18px;
|
241
|
+
color: rgba(0,0,0,0.84);
|
242
|
+
}
|
243
|
+
#wrapper ul, #wrapper ol {
|
244
|
+
font-size: 20px;
|
245
|
+
font-family: $font-family-sans-serif;
|
246
|
+
@media(max-width: $screen-sm-min){
|
247
|
+
font-size: 18px;
|
248
|
+
}
|
249
|
+
}
|
250
|
+
.container-fluid p.justify {
|
251
|
+
font-size: 16px;
|
252
|
+
text-align: justify;
|
253
|
+
line-height: 1.66em;
|
254
|
+
}
|
255
|
+
|
256
|
+
.container-fluid h2 {
|
257
|
+
font-size: 30px;
|
258
|
+
color: #3D383E;
|
259
|
+
font-weight: 200;
|
260
|
+
text-transform: none;
|
261
|
+
}
|
262
|
+
/* Padded Para */
|
263
|
+
.padded-para{
|
264
|
+
padding:20px;
|
265
|
+
}
|
266
|
+
/* Spaced Paragraph */
|
267
|
+
#spaced-para{
|
268
|
+
font-size: 18px;
|
269
|
+
line-height: 40px;
|
270
|
+
}
|
271
|
+
/* Justified Paragraph */
|
272
|
+
p .justified{
|
273
|
+
text-align: justify;
|
274
|
+
text-justify: inter-word;
|
275
|
+
}
|
276
|
+
/* Shape Divider - Home Page */
|
277
|
+
.row.shape-divider {
|
278
|
+
background-color: $brand-primary;
|
279
|
+
}
|
280
|
+
// Not for breadcrumb / nav / footer
|
281
|
+
.container-fluid ul { font-size:18px; }
|
282
|
+
.container-fluid ol { font-size: 18px;}
|
283
|
+
// Padded row css
|
284
|
+
.padded-row {
|
285
|
+
padding: 100px 0;
|
286
|
+
}
|
287
|
+
//Homepage Sub Tag
|
288
|
+
p.sub-tag {
|
289
|
+
width: 65%;
|
290
|
+
margin-bottom: 20px;
|
291
|
+
margin-top: 10px;
|
292
|
+
font-size: 19px;
|
293
|
+
color: #FFF;
|
294
|
+
}
|
295
|
+
|
296
|
+
// Buttons
|
297
|
+
#buttons > a
|
298
|
+
{
|
299
|
+
background: transparent;
|
300
|
+
color: $navbar-text-color;
|
301
|
+
border-color: $navbar-text-color;
|
302
|
+
-webkit-border-radius: 2px;
|
303
|
+
-moz-border-radius: 2px;
|
304
|
+
border-radius: 2px;
|
305
|
+
padding: 10px 16px;
|
306
|
+
font-size: 15px;
|
307
|
+
line-height: 1.3333333;
|
308
|
+
transition: all 500ms ease;
|
309
|
+
}
|
310
|
+
#buttons > a:hover
|
311
|
+
{
|
312
|
+
background: $navbar-text-color;
|
313
|
+
color: $navbar-inverse-bg;
|
314
|
+
border-color: $navbar-text-color;
|
315
|
+
}
|
316
|
+
|
317
|
+
//Bottom Border Five Pixels.
|
318
|
+
.bottom-border-five{ margin-bottom: 5px; }
|
319
|
+
|
320
|
+
//Alternate row for theme
|
321
|
+
.alternate-row {
|
322
|
+
background-color: #E5E5E5;
|
323
|
+
padding: 40px 0;
|
324
|
+
}
|
325
|
+
|
326
|
+
.small-img{
|
327
|
+
height:100px;
|
328
|
+
width:auto;
|
329
|
+
}
|
330
|
+
|
331
|
+
@media (min-width: $screen-md) {
|
332
|
+
.partners-panel {
|
333
|
+
margin-top:80px;
|
334
|
+
}
|
335
|
+
.margin-image {
|
336
|
+
padding:40px;
|
337
|
+
}
|
338
|
+
|
339
|
+
}
|
340
|
+
|
341
|
+
.margin-top { margin-top: 40px;}
|
342
|
+
|
343
|
+
.panel-body.members-panel-body {
|
344
|
+
margin-top: 0;
|
345
|
+
border: 0;
|
346
|
+
}
|
347
|
+
.new-panel .panel-primary > .panel-heading {
|
348
|
+
color: #000000;
|
349
|
+
background-color: transparent;
|
350
|
+
border:0;
|
351
|
+
}
|
352
|
+
|
353
|
+
// Iframe for Search page.
|
354
|
+
#searchIframe {
|
355
|
+
border:none;
|
356
|
+
}
|
357
|
+
|
358
|
+
//Vertical Center
|
359
|
+
.vcenter {
|
360
|
+
display: inline-block;
|
361
|
+
vertical-align: middle;
|
362
|
+
float: none;
|
363
|
+
}
|
364
|
+
|
365
|
+
//Contact Hero Banner
|
366
|
+
.contact-hero{
|
367
|
+
height:200px;
|
368
|
+
line-height: 200px;
|
369
|
+
text-align: center;
|
370
|
+
font-size:18px;
|
371
|
+
color: #fff;
|
372
|
+
background: url() repeat;
|
373
|
+
}
|
374
|
+
|
375
|
+
//----------BOOTSTRAP STYLES ----------------
|
376
|
+
|
377
|
+
.panel-primary {
|
378
|
+
border:0;
|
379
|
+
}
|
380
|
+
|
381
|
+
// Bootstrap Glyphicon Override.
|
382
|
+
.glyphicon {
|
383
|
+
width: 14px;
|
384
|
+
height: 14px;
|
385
|
+
}
|
386
|
+
//Remove button focus
|
387
|
+
.btn:focus,.btn:active:focus,.btn.active:focus,
|
388
|
+
.btn.focus,.btn:active.focus,.btn.active.focus {
|
389
|
+
outline: none;
|
390
|
+
}
|
391
|
+
|
392
|
+
.container .jumbotron, .container-fluid .jumbotron {
|
393
|
+
border-radius: 0px;
|
394
|
+
}
|
395
|
+
|
396
|
+
@media(max-width:$screen-sm-min){
|
397
|
+
.partners-panel {
|
398
|
+
height: auto;
|
399
|
+
}
|
400
|
+
}
|
401
|
+
|
402
|
+
|
403
|
+
// Cookie Consent Setup
|
404
|
+
|
405
|
+
a.cc-link {
|
406
|
+
color: $cookie-consent-text !important;
|
407
|
+
}
|
408
|
+
|
409
|
+
//Mailchimp
|
410
|
+
button#mc-embedded-subscribe {
|
411
|
+
background-color: $navbar-inverse-bg;
|
412
|
+
color: $navbar-text-color;
|
413
|
+
transition: all 1s ease;
|
414
|
+
}
|
415
|
+
button#mc-embedded-subscribe:hover {
|
416
|
+
background-color: lighten($footer-bg-color, 20%);
|
417
|
+
color: $navbar-text-color;
|
418
|
+
transition: all 1s ease;
|
419
|
+
}
|
420
|
+
|
421
|
+
.coloured-bp{
|
422
|
+
color: $brand-primary;
|
423
|
+
font-size:12px;
|
424
|
+
}
|
425
|
+
|
426
|
+
|
427
|
+
// Padding Classes
|
428
|
+
|
429
|
+
.no-padding-left {
|
430
|
+
padding-left: 0;
|
431
|
+
}
|
432
|
+
|
433
|
+
.no-padding {
|
434
|
+
padding: 0;
|
435
|
+
}
|
436
|
+
|
437
|
+
.text-bold {
|
438
|
+
font-weight: 700;
|
439
|
+
}
|
440
|
+
|
441
|
+
.meta {
|
442
|
+
font-size: 12px;
|
443
|
+
color: rgba(0, 0, 0, .4);
|
444
|
+
}
|
445
|
+
|
446
|
+
.meta a {
|
447
|
+
text-decoration: none;
|
448
|
+
color: rgba(0, 0, 0, .4);
|
449
|
+
}
|
450
|
+
|
451
|
+
.meta a:hover {
|
452
|
+
color: rgba(0, 0, 0, .87);
|
453
|
+
}
|
454
|
+
|
455
|
+
|
456
|
+
//Cognito Forms
|
457
|
+
//Submit Button
|
458
|
+
button#c-submit-button {
|
459
|
+
background-color: $brand-primary;
|
460
|
+
border: 1px solid black;
|
461
|
+
}
|
462
|
+
|
463
|
+
.c-forms-form-title {
|
464
|
+
display: none;
|
465
|
+
}
|
466
|
+
|
467
|
+
|
468
|
+
//Style for search
|
469
|
+
#searchEmbed {
|
470
|
+
margin-bottom: 20px;
|
471
|
+
display:block;
|
472
|
+
overflow: auto;
|
473
|
+
}
|
474
|
+
|
475
|
+
|
476
|
+
@media (max-width: $screen-md-min){
|
477
|
+
h1#home-page-title {
|
478
|
+
font-size: 25px;
|
479
|
+
}
|
480
|
+
//Remove the padding from columns on mobile views
|
481
|
+
.container-fluid .col-md-3, .container-fluid .col-md-9 {
|
482
|
+
padding-left:0;
|
483
|
+
padding-right:0;
|
484
|
+
}
|
485
|
+
}
|
486
|
+
|
487
|
+
//Remove italics from icons - Google Chrome.
|
488
|
+
|
489
|
+
i {
|
490
|
+
font-style: normal;
|
491
|
+
}
|
492
|
+
|
493
|
+
/* ----------------- Missing Bootstrap 3 5ths Columns -----------------*/
|
494
|
+
|
495
|
+
.col-xs-5ths,
|
496
|
+
.col-sm-5ths,
|
497
|
+
.col-md-5ths,
|
498
|
+
.col-lg-5ths {
|
499
|
+
position: relative;
|
500
|
+
min-height: 1px;
|
501
|
+
padding-right: 15px;
|
502
|
+
padding-left: 15px;
|
503
|
+
}
|
504
|
+
|
505
|
+
.col-xs-5ths {
|
506
|
+
width: 20%;
|
507
|
+
float: left;
|
508
|
+
}
|
509
|
+
|
510
|
+
@media (min-width: $screen-xs-min) {
|
511
|
+
.col-sm-5ths {
|
512
|
+
width: 20%;
|
513
|
+
float: left;
|
514
|
+
}
|
515
|
+
}
|
516
|
+
|
517
|
+
@media (min-width: $screen-sm-min) {
|
518
|
+
.col-md-5ths {
|
519
|
+
width: 20%;
|
520
|
+
float: left;
|
521
|
+
}
|
522
|
+
}
|
523
|
+
|
524
|
+
@media (min-width: $screen-md-min) {
|
525
|
+
.col-lg-5ths {
|
526
|
+
width: 20%;
|
527
|
+
float: left;
|
528
|
+
}
|
529
|
+
}
|
530
|
+
|
531
|
+
/*--------------------- Mailchimp Newsletter --------------------*/
|
532
|
+
input#mce-EMAIL {
|
533
|
+
border: 0!important;
|
534
|
+
border-radius: 0 !important;
|
535
|
+
margin-bottom: 10px;
|
536
|
+
outline: none;
|
537
|
+
border: none !important;
|
538
|
+
-webkit-box-shadow: none !important;
|
539
|
+
-moz-box-shadow: none !important;
|
540
|
+
box-shadow: none !important;
|
541
|
+
|
542
|
+
}
|
543
|
+
|
544
|
+
input#mce-FNAME {
|
545
|
+
border: 0!important;
|
546
|
+
border-radius: 0 !important;
|
547
|
+
margin-bottom: 10px;
|
548
|
+
outline: none;
|
549
|
+
border: none !important;
|
550
|
+
-webkit-box-shadow: none !important;
|
551
|
+
-moz-box-shadow: none !important;
|
552
|
+
box-shadow: none !important;
|
553
|
+
}
|
554
|
+
|
555
|
+
input#mce-LNAME {
|
556
|
+
border: 0!important;
|
557
|
+
border-radius: 0 !important;
|
558
|
+
margin-bottom: 10px;
|
559
|
+
outline: none;
|
560
|
+
outline: none;
|
561
|
+
border: none !important;
|
562
|
+
-webkit-box-shadow: none !important;
|
563
|
+
-moz-box-shadow: none !important;
|
564
|
+
box-shadow: none !important;
|
565
|
+
}
|
566
|
+
|
567
|
+
button#mc-embedded-subscribe {
|
568
|
+
border:0;
|
569
|
+
border-radius:0;
|
570
|
+
background-color: $brand-primary;
|
571
|
+
color: white;
|
572
|
+
transition: all 200ms ease;
|
573
|
+
}
|
574
|
+
|
575
|
+
button#mc-embedded-subscribe:hover{
|
576
|
+
background-color: #252525;
|
577
|
+
color: white;
|
578
|
+
transition: all 200ms ease;
|
579
|
+
}
|
580
|
+
|
581
|
+
/* Repsonsive Media Embed */
|
582
|
+
.embed-responsive-16by9 {
|
583
|
+
padding-bottom: 56.25%;
|
584
|
+
margin-bottom: 25px;
|
585
|
+
}
|
586
|
+
|
587
|
+
/* Right Aligned Image*/
|
588
|
+
img.img-responsive.right-aligned-image {
|
589
|
+
float: right;
|
590
|
+
width: 30%;
|
591
|
+
margin: 30px;
|
592
|
+
}
|
593
|
+
|
594
|
+
@media(max-width:$screen-xs-min){
|
595
|
+
|
596
|
+
/* Mobile Screens - Right Aligned Images */
|
597
|
+
img.img-responsive.right-aligned-image.lazyloaded {
|
598
|
+
float: none;
|
599
|
+
width: 100%;
|
600
|
+
margin-left: auto;
|
601
|
+
margin-right: auto;
|
602
|
+
margin-top: -9px;
|
603
|
+
margin-bottom: -15px;
|
604
|
+
}
|
605
|
+
|
606
|
+
}
|
607
|
+
|
608
|
+
/* Wordpress Styles */
|
609
|
+
.container-fluid blockquote, .container-fluid code, .container-fluid dl, .container-fluid fieldset,
|
610
|
+
.container-fluid p, .container-fluid pre, .container-fluid table{
|
611
|
+
margin-bottom: 25px;
|
612
|
+
}
|
613
|
+
|
614
|
+
#tabbed-nav-bar {
|
615
|
+
margin-bottom: 25px;
|
616
|
+
}
|
617
|
+
|
618
|
+
div#tabbed-nav-bar-collapse {
|
619
|
+
background-color: white;
|
620
|
+
}
|
621
|
+
ul#tab-row {
|
622
|
+
margin-bottom: 20px;
|
623
|
+
}
|
624
|
+
|
625
|
+
.container-fluid a:hover {
|
626
|
+
text-decoration: none;
|
627
|
+
color: darken($brand-primary, 20%);
|
628
|
+
}
|
629
|
+
|
630
|
+
.container-fluid ul {
|
631
|
+
color: $text-color;
|
632
|
+
font-size: 18px;
|
633
|
+
}
|
634
|
+
|
635
|
+
/* Blockquote Styles*/
|
636
|
+
blockquote{
|
637
|
+
background-color: #f6f6f6;
|
638
|
+
}
|
639
|
+
|
640
|
+
blockquote:before {
|
641
|
+
position: relative;
|
642
|
+
background-image:url('data:image/svg+xml; utf8, <svg class="mk-svg-icon" xmlns="http://www.w3.org/2000/svg" fill="#ddd" viewBox="0 0 1664 1792"><path d="M768 960v384q0 80-56 136t-136 56h-384q-80 0-136-56t-56-136v-704q0-104 40.5-198.5t109.5-163.5 163.5-109.5 198.5-40.5h64q26 0 45 19t19 45v128q0 26-19 45t-45 19h-64q-106 0-181 75t-75 181v32q0 40 28 68t68 28h224q80 0 136 56t56 136zm896 0v384q0 80-56 136t-136 56h-384q-80 0-136-56t-56-136v-704q0-104 40.5-198.5t109.5-163.5 163.5-109.5 198.5-40.5h64q26 0 45 19t19 45v128q0 26-19 45t-45 19h-64q-106 0-181 75t-75 181v32q0 40 28 68t68 28h224q80 0 136 56t56 136z"></path></svg>');
|
643
|
+
content: "";
|
644
|
+
display: block;
|
645
|
+
left: 0px;
|
646
|
+
top: 0px;
|
647
|
+
width: 32px;
|
648
|
+
height: 35px;
|
649
|
+
}
|
650
|
+
#content-container{
|
651
|
+
padding-top:20px;
|
652
|
+
}
|
653
|
+
.row.content {
|
654
|
+
position: relative;
|
655
|
+
background-color: white;
|
656
|
+
}
|
657
|
+
/* VCenter Img*/
|
658
|
+
.vcenter-img {
|
659
|
+
display: inline-block;
|
660
|
+
vertical-align: middle;
|
661
|
+
height: 110px;
|
662
|
+
}
|
663
|
+
|
664
|
+
#wrapper {
|
665
|
+
overflow-x: hidden;
|
666
|
+
}
|
667
|
+
|
668
|
+
.container-fluid h1 {
|
669
|
+
font-size: 36px;
|
670
|
+
margin-top: 0;
|
671
|
+
}
|
672
|
+
|
673
|
+
.container-fluid h1, .container-fluid h2, .container-fluid h3, .container-fluid h4, .container-fluid h5 {
|
674
|
+
color: #393836;
|
675
|
+
}
|
676
|
+
|
677
|
+
/* Bootstrap Panels*/
|
678
|
+
.container-fluid .panel-body {
|
679
|
+
padding: 0;
|
680
|
+
border-radius: 0;
|
681
|
+
}
|
682
|
+
|
683
|
+
.container-fluid .panel.panel-primary {
|
684
|
+
padding: 0;
|
685
|
+
border-radius: 0px;
|
686
|
+
}
|
687
|
+
|
688
|
+
.container-fluid .panel-heading {
|
689
|
+
border-radius: 0px;
|
690
|
+
border: 1px solid $brand-primary;
|
691
|
+
}
|
692
|
+
|
693
|
+
.container-fluid h3.panel-title {
|
694
|
+
color: $navbar-text-color;
|
695
|
+
}
|
696
|
+
|
697
|
+
ul {
|
698
|
+
font-size: 18px;
|
699
|
+
}
|
700
|
+
// FlexBox
|
701
|
+
.flex-center {
|
702
|
+
display: flex;
|
703
|
+
align-items: center;
|
704
|
+
justify-content: center;
|
705
|
+
flex-direction: column;
|
706
|
+
flex: 1 1 auto;
|
707
|
+
align-self: center;
|
708
|
+
}
|
709
|
+
.flex-container {
|
710
|
+
display: flex;
|
711
|
+
flex-direction: column;
|
712
|
+
align-items: center;
|
713
|
+
}
|
714
|
+
.container.flex-container {
|
715
|
+
height: 100%;
|
716
|
+
}
|
717
|
+
.bg-row {
|
718
|
+
background-position: center center;
|
719
|
+
background-size: cover;
|
720
|
+
background-attachment: scroll;
|
721
|
+
}
|
722
|
+
.bg-row.fixed{
|
723
|
+
background-attachment: fixed;
|
724
|
+
}
|
725
|
+
// Email Button
|
726
|
+
.container-fluid .email {
|
727
|
+
height: 50px;
|
728
|
+
background-color: $brand-primary;
|
729
|
+
width: 200px;
|
730
|
+
line-height: 30px;
|
731
|
+
text-align: center;
|
732
|
+
color: white;
|
733
|
+
font-weight: bold;
|
734
|
+
border: 1px solid #9e9e9e;
|
735
|
+
margin-left: auto;
|
736
|
+
margin-right: auto;
|
737
|
+
border-radius: 0;
|
738
|
+
transition: all 200ms ease;
|
739
|
+
}
|
740
|
+
.container-fluid .email:hover {
|
741
|
+
background-color: #3a3a3a;
|
742
|
+
border: 1px solid #000000;
|
743
|
+
color:white;
|
744
|
+
}
|
745
|
+
.padded-row-30 {
|
746
|
+
padding: 30px 0;
|
747
|
+
}
|
748
|
+
.content-row {
|
749
|
+
background-color: white;
|
750
|
+
position: relative;
|
751
|
+
}
|
752
|
+
#wrapper p.home-text {
|
753
|
+
font-size: 22px;
|
754
|
+
text-align: center;
|
755
|
+
}
|
756
|
+
#wrapper .text-white {
|
757
|
+
color:white;
|
758
|
+
}
|
759
|
+
#wrapper a.btn.btn-block-center {
|
760
|
+
display:block;
|
761
|
+
width:100px;
|
762
|
+
margin: 10px auto;
|
763
|
+
position: relative;
|
764
|
+
}
|
765
|
+
$spaceamounts: (10, 20, 30, 40, 50, 75, 100); // Adjust this to include the pixel amounts you need.
|
766
|
+
$sides: (top, bottom, left, right); // Leave this variable alone
|
767
|
+
|
768
|
+
@each $space in $spaceamounts {
|
769
|
+
@each $side in $sides {
|
770
|
+
.m-#{str-slice($side, 0, 1)}-#{$space} {
|
771
|
+
margin-#{$side}: #{$space}px !important;
|
772
|
+
}
|
773
|
+
|
774
|
+
.p-#{str-slice($side, 0, 1)}-#{$space} {
|
775
|
+
padding-#{$side}: #{$space}px !important;
|
776
|
+
}
|
777
|
+
}
|
778
|
+
}
|
779
|
+
@media(max-width: $screen-sm-min - 1){
|
780
|
+
.text-center-mob {
|
781
|
+
text-align:center !important;
|
782
|
+
}
|
783
|
+
}
|
784
|
+
|
785
|
+
// Responsive Padding/Margin classes
|
786
|
+
$margin-none: 0;
|
787
|
+
$margin-sm: 5;
|
788
|
+
$margin-base: 15;
|
789
|
+
$margin-lg: 30;
|
790
|
+
$margin-xl: 50;
|
791
|
+
$margin-xxl: 100;
|
792
|
+
|
793
|
+
$padding-xxl: 100;
|
794
|
+
$padding-xl: 50;
|
795
|
+
$padding-lg: 30;
|
796
|
+
$padding-base: 15;
|
797
|
+
$padding-sm: 5;
|
798
|
+
$padding-none: 0;
|
799
|
+
|
800
|
+
@mixin make-paddings($class, $padding){
|
801
|
+
.p-#{$class}-#{$padding} { padding: $padding * 1px !important; }
|
802
|
+
.pl-#{$class}-#{$padding} { padding-left: $padding * 1px !important; }
|
803
|
+
.pr-#{$class}-#{$padding} { padding-right: $padding * 1px !important; }
|
804
|
+
.pt-#{$class}-#{$padding} { padding-top: $padding * 1px !important; }
|
805
|
+
.pb-#{$class}-#{$padding} { padding-bottom: $padding * 1px !important; }
|
806
|
+
.pv-#{$class}-#{$padding} { @extend .pt-#{$class}-#{$padding}; @extend .pb-#{$class}-#{$padding}; }
|
807
|
+
.ph-#{$class}-#{$padding} { @extend .pl-#{$class}-#{$padding}; @extend .pr-#{$class}-#{$padding}; }
|
808
|
+
}
|
809
|
+
@mixin make-margins($class, $margin){
|
810
|
+
.m-#{$class}-#{$margin} { margin: $margin * 1px !important; }
|
811
|
+
.ml-#{$class}-#{$margin} { margin-left: $margin * 1px !important; }
|
812
|
+
.mr-#{$class}-#{$margin} { margin-right: $margin * 1px !important; }
|
813
|
+
.mt-#{$class}-#{$margin} { margin-top: $margin * 1px !important; }
|
814
|
+
.mb-#{$class}-#{$margin} { margin-bottom: $margin * 1px !important; }
|
815
|
+
.mv-#{$class}-#{$margin} { @extend .mt-#{$class}-#{$margin}; @extend .mb-#{$class}-#{$margin}; }
|
816
|
+
.mh-#{$class}-#{$margin} { @extend .ml-#{$class}-#{$margin}; @extend .mr-#{$class}-#{$margin}; }
|
817
|
+
}
|
818
|
+
|
819
|
+
@mixin make-all-paddings($class){
|
820
|
+
@include make-paddings($class, $padding-none);
|
821
|
+
@include make-paddings($class, $padding-sm);
|
822
|
+
@include make-paddings($class, $padding-base);
|
823
|
+
@include make-paddings($class, $padding-lg);
|
824
|
+
@include make-paddings($class, $padding-xl);
|
825
|
+
@include make-paddings($class, $padding-xxl);
|
826
|
+
}
|
827
|
+
@mixin make-all-margins($class){
|
828
|
+
@include make-margins($class, $margin-none);
|
829
|
+
@include make-margins($class, $margin-sm);
|
830
|
+
@include make-margins($class, $margin-base);
|
831
|
+
@include make-margins($class, $margin-lg);
|
832
|
+
@include make-margins($class, $margin-xl);
|
833
|
+
@include make-margins($class, $margin-xxl);
|
834
|
+
}
|
835
|
+
|
836
|
+
|
837
|
+
@include make-all-paddings(xs);
|
838
|
+
@include make-all-margins(xs);
|
839
|
+
@media (min-width: $screen-sm-min) {
|
840
|
+
@include make-all-paddings(sm);
|
841
|
+
@include make-all-margins(sm);
|
842
|
+
}
|
843
|
+
@media (min-width: $screen-md-min) {
|
844
|
+
@include make-all-paddings(md);
|
845
|
+
@include make-all-margins(md);
|
846
|
+
}
|
847
|
+
@media (min-width: $screen-lg-min) {
|
848
|
+
@include make-all-paddings(lg);
|
849
|
+
@include make-all-margins(lg);
|
850
|
+
}
|
851
|
+
|
852
|
+
span.new-post {
|
853
|
+
background-color: $brand-primary;
|
854
|
+
color: white;
|
855
|
+
padding: 4px;
|
856
|
+
border-radius: 3px;
|
857
|
+
}
|
858
|
+
// ScrollBar Style
|
859
|
+
body::-webkit-scrollbar {
|
860
|
+
width: 1em;
|
861
|
+
}
|
862
|
+
body::-webkit-scrollbar-track {
|
863
|
+
background-color: $navbar-inverse-bg;
|
864
|
+
}
|
865
|
+
body::-webkit-scrollbar-thumb {
|
866
|
+
background-color: $brand-primary;
|
867
|
+
}
|
868
|
+
span.last-modified-at {
|
869
|
+
color: $footer-text-color;
|
870
|
+
font-size: 14px;
|
871
|
+
}
|