ieee-students-branch-jekyll-theme 0.1.01
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.md +2 -0
- data/_includes/footer.html +14 -0
- data/_includes/header.html +25 -0
- data/_includes/headerimage.html +5 -0
- data/_includes/ieeefootbar.html +44 -0
- data/_includes/ieeeheader.html +50 -0
- data/_includes/nav.html +0 -0
- data/_includes/navbar.html +71 -0
- data/_includes/navbarauto.html +70 -0
- data/_includes/notice.html +11 -0
- data/_includes/sitemap.html +22 -0
- data/_includes/socialmedia.html +16 -0
- data/_layouts/_includes +27 -0
- data/_layouts/blank.html +9 -0
- data/_layouts/blankfullwidth.html +8 -0
- data/_layouts/default.html +12 -0
- data/_layouts/fullwidth.html +7 -0
- data/_layouts/fullwidthhome.html +7 -0
- data/_layouts/home.html +8 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +5 -0
- data/_layouts/subpage.html +5 -0
- data/assets/css/blue-white.css +372 -0
- data/assets/css/colors.css +285 -0
- data/assets/css/green-white.css +375 -0
- data/assets/css/greys.css +375 -0
- data/assets/css/ieeebootstrap.css +1360 -0
- data/assets/css/orange-white.css +373 -0
- data/assets/css/style.css +23 -0
- data/assets/images/header.png +0 -0
- data/assets/images/headerimage.png +0 -0
- data/assets/images/icon_key_white.gif +0 -0
- data/assets/images/ieee_mb_black.png +0 -0
- data/assets/images/ieee_mb_white.png +0 -0
- data/assets/images/logo.png +0 -0
- data/assets/images/social/facebook-icon.png +0 -0
- data/assets/images/social/gplus-icon.png +0 -0
- data/assets/images/social/linkedin-icon.png +0 -0
- data/assets/images/social/rss-icon.png +0 -0
- data/assets/images/social/twitter-icon.png +0 -0
- data/assets/images/social/youtube-icon.png +0 -0
- metadata +132 -0
@@ -0,0 +1,1360 @@
|
|
1
|
+
/* BODY
|
2
|
+
-------------------------------------------------- */
|
3
|
+
body {
|
4
|
+
font-family: Verdana, Helvetica, sans-serif;
|
5
|
+
}
|
6
|
+
|
7
|
+
body.custom-background {
|
8
|
+
background-size: cover;
|
9
|
+
}
|
10
|
+
|
11
|
+
/* Heading styles
|
12
|
+
-------------------------------------------------- */
|
13
|
+
h1 {
|
14
|
+
font-size: 2.441em;
|
15
|
+
}
|
16
|
+
|
17
|
+
h2 {
|
18
|
+
font-size: 1.953em;
|
19
|
+
}
|
20
|
+
|
21
|
+
h3 {
|
22
|
+
font-size: 1.563em;
|
23
|
+
}
|
24
|
+
|
25
|
+
h4 {
|
26
|
+
font-size: 1.25em;
|
27
|
+
}
|
28
|
+
|
29
|
+
h5 {
|
30
|
+
font-size: 0.8em;
|
31
|
+
}
|
32
|
+
|
33
|
+
h6 {
|
34
|
+
font-size: 0.64em;
|
35
|
+
}
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
/* IEEE GLOBAL HEADER
|
40
|
+
-------------------------------------------------- */
|
41
|
+
.global-nav {
|
42
|
+
padding-top: 0 !important;
|
43
|
+
padding-bottom: 0 !important;
|
44
|
+
margin: 0;
|
45
|
+
/* line-height: normal; */
|
46
|
+
}
|
47
|
+
/*
|
48
|
+
.global-nav .pull-left a {
|
49
|
+
padding: 0 10px;
|
50
|
+
}
|
51
|
+
|
52
|
+
.global-nav .pull-left a:first-child {
|
53
|
+
padding-left: 0;
|
54
|
+
}
|
55
|
+
*/
|
56
|
+
|
57
|
+
.global-nav ul{
|
58
|
+
margin: 0 0 1.5em 0;
|
59
|
+
padding: 12px 0;
|
60
|
+
height: 0;
|
61
|
+
}
|
62
|
+
|
63
|
+
.global-nav ul li {
|
64
|
+
display: inline;
|
65
|
+
padding: 0;
|
66
|
+
margin: 0;
|
67
|
+
}
|
68
|
+
|
69
|
+
.global-nav ul > li:after {
|
70
|
+
content: " | ";
|
71
|
+
padding: 0 8px;
|
72
|
+
}
|
73
|
+
|
74
|
+
.global-nav ul > li:first-child {
|
75
|
+
padding-left: 0;
|
76
|
+
}
|
77
|
+
|
78
|
+
|
79
|
+
|
80
|
+
.global-nav li:last-child:after {
|
81
|
+
content: "";
|
82
|
+
}
|
83
|
+
|
84
|
+
.global-nav > .container > .col-md-9, .global-nav > .container > .col-md-3 {
|
85
|
+
padding-right: 0;
|
86
|
+
padding-left: 0;
|
87
|
+
}
|
88
|
+
|
89
|
+
.global-nav, .banner {
|
90
|
+
padding-left: 0;
|
91
|
+
padding-right: 0;
|
92
|
+
}
|
93
|
+
|
94
|
+
.banner {
|
95
|
+
height: 125px;
|
96
|
+
padding-top: 35px;
|
97
|
+
padding-bottom: 35px;
|
98
|
+
}
|
99
|
+
/*
|
100
|
+
a.sign-in {
|
101
|
+
background-position: 0 4px;
|
102
|
+
background-repeat: no-repeat;
|
103
|
+
font-weight: normal;
|
104
|
+
padding: 0 0 0 30px;
|
105
|
+
text-decoration: none;
|
106
|
+
cursor: pointer;
|
107
|
+
}
|
108
|
+
*/
|
109
|
+
|
110
|
+
.dropdown .sign-in-container {
|
111
|
+
width: 300px;
|
112
|
+
padding: 20px;
|
113
|
+
}
|
114
|
+
|
115
|
+
.dropdown .sign-in-container a {
|
116
|
+
text-decoration: none;
|
117
|
+
}
|
118
|
+
|
119
|
+
.dropdown .sign-in-container > .glyphicon, #mobile-signin .glyphicon, .join-renew .glyphicon {
|
120
|
+
font-size: 10px;
|
121
|
+
padding-right: 3px;
|
122
|
+
top: 0;
|
123
|
+
}
|
124
|
+
|
125
|
+
#mobile-signin {
|
126
|
+
margin-top: 15px;
|
127
|
+
margin-bottom: 10px;
|
128
|
+
}
|
129
|
+
|
130
|
+
|
131
|
+
/* HEADER STYLES
|
132
|
+
-------------------------------------------------- */
|
133
|
+
|
134
|
+
.jumbotron h1 {
|
135
|
+
font-size: 3em;
|
136
|
+
}
|
137
|
+
|
138
|
+
h1.site-title {
|
139
|
+
margin-top: 0.1em;
|
140
|
+
}
|
141
|
+
|
142
|
+
|
143
|
+
h2.site-description {
|
144
|
+
clear:both;
|
145
|
+
}
|
146
|
+
|
147
|
+
.navbar-wrapper {
|
148
|
+
z-index: 10;
|
149
|
+
position: relative;
|
150
|
+
}
|
151
|
+
|
152
|
+
.navbar-default .navbar-collapse {
|
153
|
+
/* min-height: inherit; */
|
154
|
+
padding: 0;
|
155
|
+
}
|
156
|
+
|
157
|
+
/*
|
158
|
+
.navbar-nav {
|
159
|
+
position: relative;
|
160
|
+
z-index: 10;
|
161
|
+
-webkit-transform: translate3d(0, 0, 0);
|
162
|
+
}
|
163
|
+
*/
|
164
|
+
|
165
|
+
/* make sure dropdown menu item has a higher z-index to show
|
166
|
+
above regular menu item when dropdown is expanded
|
167
|
+
if menu items span across 2 rows */
|
168
|
+
/*
|
169
|
+
.nav > li.dropdown {
|
170
|
+
z-index: 11;
|
171
|
+
}
|
172
|
+
*/
|
173
|
+
|
174
|
+
.navbar-default .navbar-nav a {
|
175
|
+
font-size: 16px;
|
176
|
+
}
|
177
|
+
|
178
|
+
/*
|
179
|
+
.dropdown-toggle {
|
180
|
+
z-index: 10;
|
181
|
+
}
|
182
|
+
*/
|
183
|
+
|
184
|
+
.dropdown-menu {
|
185
|
+
padding: 0;
|
186
|
+
z-index: 100; /* make sure dropdown menu shows above other elements */
|
187
|
+
}
|
188
|
+
|
189
|
+
.dropdown.open {
|
190
|
+
z-index: 1000
|
191
|
+
}
|
192
|
+
|
193
|
+
.dropdown-menu > li > a {
|
194
|
+
padding: 10px 20px;
|
195
|
+
}
|
196
|
+
|
197
|
+
.list-group-item:first-child, .list-group-item:last-child {
|
198
|
+
border-radius: 0;
|
199
|
+
}
|
200
|
+
|
201
|
+
.dropdown-menu>.active>a, .dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus {
|
202
|
+
text-decoration: none;
|
203
|
+
outline: 0;
|
204
|
+
}
|
205
|
+
|
206
|
+
.dropdown-toggle > .dropdown-header {
|
207
|
+
padding: 0;
|
208
|
+
}
|
209
|
+
|
210
|
+
.has-children {
|
211
|
+
float: right;
|
212
|
+
font-size: 12px;
|
213
|
+
line-height: 18px;
|
214
|
+
}
|
215
|
+
|
216
|
+
/* enable hover submenu */
|
217
|
+
/*.dropdown:hover > ul.dropdown-menu{ display: block; }*/
|
218
|
+
|
219
|
+
/* for submenu dropdowns */
|
220
|
+
.dropdown-submenu {
|
221
|
+
position:relative;
|
222
|
+
}
|
223
|
+
.dropdown-submenu>.dropdown-menu {
|
224
|
+
top: 0;
|
225
|
+
left: 100%;
|
226
|
+
margin-top: -1px;
|
227
|
+
/* margin-left: -1px; */
|
228
|
+
-webkit-border-radius: 0;
|
229
|
+
-moz-border-radius: 0;
|
230
|
+
border-radius: 0;
|
231
|
+
}
|
232
|
+
/*.dropdown-submenu:hover>.dropdown-menu {
|
233
|
+
display:block;
|
234
|
+
}*/
|
235
|
+
.dropdown-submenu>a:after {
|
236
|
+
display: block;
|
237
|
+
content: " ";
|
238
|
+
float: right;
|
239
|
+
width: 0;
|
240
|
+
height: 0;
|
241
|
+
border-color: transparent;
|
242
|
+
border-style: solid;
|
243
|
+
border-width: 5px 0 5px 5px;
|
244
|
+
margin-top: 5px;
|
245
|
+
margin-right: -10px;
|
246
|
+
}
|
247
|
+
|
248
|
+
.dropdown-submenu.pull-left {
|
249
|
+
float: none;
|
250
|
+
}
|
251
|
+
|
252
|
+
.dropdown-submenu.pull-left > .dropdown-menu {
|
253
|
+
left: -100%;
|
254
|
+
margin-left: 10px;
|
255
|
+
-webkit-border-radius: 6px 0 6px 6px;
|
256
|
+
-moz-border-radius: 6px 0 6px 6px;
|
257
|
+
border-radius: 6px 0 6px 6px;
|
258
|
+
}
|
259
|
+
|
260
|
+
/*.dropdown-submenu:hover ul.dropdown-menu{ display: block; }*/
|
261
|
+
|
262
|
+
/* SEARCH AND SOCIAL
|
263
|
+
-------------------------------------------------- */
|
264
|
+
div.gsc-control-searchbox-only {
|
265
|
+
height: 34px;
|
266
|
+
}
|
267
|
+
.search, form.gsc-search-box {
|
268
|
+
margin-bottom: 20px;
|
269
|
+
}
|
270
|
+
|
271
|
+
/* styles for Google CS */
|
272
|
+
input.gsc-input {
|
273
|
+
display: block !important;
|
274
|
+
margin: 0 !important;
|
275
|
+
width: 100% !important;
|
276
|
+
display: block !important;
|
277
|
+
width: 100% !important;
|
278
|
+
height: 34px !important;
|
279
|
+
padding: 6px 24px 6px 12px !important;
|
280
|
+
font-size: 14px !important;
|
281
|
+
line-height: 1.428571429 !important;
|
282
|
+
background-position: 4% 50% !important;
|
283
|
+
border-radius: 0 !important;
|
284
|
+
}
|
285
|
+
|
286
|
+
/*
|
287
|
+
div.gsc-clear-button {
|
288
|
+
display: none !important;
|
289
|
+
}
|
290
|
+
*/
|
291
|
+
|
292
|
+
td.gsc-search-button {
|
293
|
+
padding: 0 !important;
|
294
|
+
}
|
295
|
+
|
296
|
+
input.gsc-search-button {
|
297
|
+
height: 34px !important;
|
298
|
+
-moz-user-select: none !important;
|
299
|
+
background-image: none !important;
|
300
|
+
border-top-right-radius: 4px !important;
|
301
|
+
border-bottom-right-radius: 4px !important;
|
302
|
+
border-bottom-left-radius: 0 !important;
|
303
|
+
border-top-left-radius: 0 !important;
|
304
|
+
cursor: pointer !important;
|
305
|
+
display: inline-block !important;
|
306
|
+
font-size: 14px !important;
|
307
|
+
font-weight: 400 !important;
|
308
|
+
line-height: 1.42857 !important;
|
309
|
+
margin-bottom: 0 !important;
|
310
|
+
padding: 6px 12px !important;
|
311
|
+
text-align: center !important;
|
312
|
+
vertical-align: middle !important;
|
313
|
+
white-space: nowrap !important;
|
314
|
+
margin-left: -1px !important;
|
315
|
+
}
|
316
|
+
|
317
|
+
input.gsc-search-button:focus {
|
318
|
+
outline: thin dotted !important;
|
319
|
+
outline: 5px auto -webkit-focus-ring-color !important;
|
320
|
+
outline-offset: -2px !important;
|
321
|
+
}
|
322
|
+
input.gsc-search-button:hover,
|
323
|
+
input.gsc-search-button:focus {
|
324
|
+
text-decoration: none !important;
|
325
|
+
}
|
326
|
+
input.gsc-search-button:active,
|
327
|
+
input.gsc-search-button.active {
|
328
|
+
background-image: none !important;
|
329
|
+
outline: 0 !important;
|
330
|
+
}
|
331
|
+
|
332
|
+
div.gsc-clear-button, td.gsc-clear-button {
|
333
|
+
display: none !important;
|
334
|
+
/* margin-left: -90px !important; */
|
335
|
+
}
|
336
|
+
|
337
|
+
input[type=text]::-ms-clear {
|
338
|
+
display: none;
|
339
|
+
}
|
340
|
+
|
341
|
+
.gsc-above-wrapper-area-container > tbody > tr > td {
|
342
|
+
/* vertical-align: bottom !important; */
|
343
|
+
}
|
344
|
+
|
345
|
+
div.gsc-selected-option-container {
|
346
|
+
display: inline-block !important;
|
347
|
+
/*
|
348
|
+
margin-bottom: 5px !important;
|
349
|
+
margin-right: 5px !important;
|
350
|
+
*/
|
351
|
+
font-size: 14px !important;
|
352
|
+
font-weight: normal !important;
|
353
|
+
line-height: normal!important;
|
354
|
+
text-align: center !important;
|
355
|
+
white-space: nowrap !important;
|
356
|
+
vertical-align: middle !important;
|
357
|
+
cursor: pointer !important;
|
358
|
+
-webkit-user-select: none !important;
|
359
|
+
-moz-user-select: none !important;
|
360
|
+
-ms-user-select: none !important;
|
361
|
+
-o-user-select: none !important;
|
362
|
+
user-select: none !important;
|
363
|
+
background-image: none !important;
|
364
|
+
border-radius: 4px !important;
|
365
|
+
padding: 6px 12px !important;
|
366
|
+
font-size: 12px !important;
|
367
|
+
border-radius: 3px !important;
|
368
|
+
border-width: 1px !important;
|
369
|
+
width: 105px !important;
|
370
|
+
}
|
371
|
+
|
372
|
+
div.gsc-selected-option {
|
373
|
+
float: left !important;
|
374
|
+
width: auto !important;
|
375
|
+
}
|
376
|
+
|
377
|
+
div.gsc-option-selector {
|
378
|
+
display: inline-block !important;
|
379
|
+
padding: 0 !important;
|
380
|
+
margin: 0 !important;
|
381
|
+
width: 0 !important;
|
382
|
+
height: 0 !important;
|
383
|
+
margin-left: 2px !important;
|
384
|
+
/* vertical-align: middle !important; */
|
385
|
+
border-top: 4px solid !important;
|
386
|
+
height: 8px !important;
|
387
|
+
background: none !important;
|
388
|
+
position: absolute !important;
|
389
|
+
right: 8px !important;
|
390
|
+
top: 14px !important;
|
391
|
+
}
|
392
|
+
|
393
|
+
/* Facted search styles */
|
394
|
+
.gsc-tabHeader {
|
395
|
+
display: inline-block !important;
|
396
|
+
padding: 6px 12px !important;
|
397
|
+
margin-bottom: 5px !important;
|
398
|
+
margin-right: 5px !important;
|
399
|
+
font-size: 14px !important;
|
400
|
+
font-weight: normal !important;
|
401
|
+
line-height: 1.428571429 !important;
|
402
|
+
text-align: center !important;
|
403
|
+
white-space: nowrap !important;
|
404
|
+
vertical-align: middle !important;
|
405
|
+
cursor: pointer !important;
|
406
|
+
-webkit-user-select: none !important;
|
407
|
+
-moz-user-select: none !important;
|
408
|
+
-ms-user-select: none !important;
|
409
|
+
-o-user-select: none !important;
|
410
|
+
user-select: none !important;
|
411
|
+
background-image: none !important;
|
412
|
+
border-radius: 4px !important;
|
413
|
+
font-size: 12px !important;
|
414
|
+
line-height: 1.5 !important;
|
415
|
+
border-radius: 3px !important;
|
416
|
+
}
|
417
|
+
|
418
|
+
.gsc-tabhActive {
|
419
|
+
border-width: 1px !important;
|
420
|
+
border-width: 1px !important;
|
421
|
+
}
|
422
|
+
|
423
|
+
.gsc-tabhInactive {
|
424
|
+
border-width: 1px !important;
|
425
|
+
}
|
426
|
+
|
427
|
+
.gsc-tabHeader:hover,
|
428
|
+
.gsc-tabHeader:focus,
|
429
|
+
.gsc-tabHeader:active {
|
430
|
+
border-width: 1px !important;
|
431
|
+
}
|
432
|
+
|
433
|
+
.gsc-tabsArea {
|
434
|
+
border-bottom: none !important;
|
435
|
+
}
|
436
|
+
|
437
|
+
.gsc-above-wrapper-area-container {
|
438
|
+
margin-bottom: 0 !important;
|
439
|
+
}
|
440
|
+
/*
|
441
|
+
|
442
|
+
.btn-default {
|
443
|
+
color: #333;
|
444
|
+
background-color: #fff;
|
445
|
+
border-color: #ccc;
|
446
|
+
}
|
447
|
+
*/
|
448
|
+
|
449
|
+
|
450
|
+
.gssb_c .gsc-completion-container {
|
451
|
+
margin-top: 32px;
|
452
|
+
}
|
453
|
+
|
454
|
+
/*
|
455
|
+
.search-tab-wrap ul {
|
456
|
+
display: inline-block;
|
457
|
+
list-style-type: none;
|
458
|
+
margin: 0;
|
459
|
+
padding: 0;
|
460
|
+
|
461
|
+
}
|
462
|
+
|
463
|
+
.search-tab-wrap ul li {
|
464
|
+
display: inline;
|
465
|
+
margin: 0;
|
466
|
+
padding: 0;
|
467
|
+
}
|
468
|
+
|
469
|
+
.search-tab-wrap ul li a.searchtab {
|
470
|
+
border: 1px solid #000;
|
471
|
+
margin: 0;
|
472
|
+
padding: 10px;
|
473
|
+
}
|
474
|
+
*/
|
475
|
+
|
476
|
+
/* search field - make sure it expands to full width (mostly for ie8) */
|
477
|
+
td.gsc-input {
|
478
|
+
margin: 0 !important;
|
479
|
+
padding: 0 !important;
|
480
|
+
}
|
481
|
+
#search, input.gsc-input {
|
482
|
+
width: 100%;
|
483
|
+
}
|
484
|
+
|
485
|
+
.highlights{
|
486
|
+
padding-bottom:20px;
|
487
|
+
}
|
488
|
+
|
489
|
+
ul.social-icons, ul.social-icons li {
|
490
|
+
display: inline-block;
|
491
|
+
list-style: none;
|
492
|
+
padding: 2px 0 2px 2px;
|
493
|
+
}
|
494
|
+
|
495
|
+
ul.social-icons li:last-child, ul.social-icons, ul.social-icons li:last-child a {
|
496
|
+
padding-right: 0px;
|
497
|
+
}
|
498
|
+
|
499
|
+
ul.social-icons li:last-child img {
|
500
|
+
margin-right: 0px;
|
501
|
+
}
|
502
|
+
|
503
|
+
ul.social-icons li img {
|
504
|
+
margin: 0 2px;
|
505
|
+
width: 34px; /* force dimensions */
|
506
|
+
height: 34px; /* force dimensions */
|
507
|
+
}
|
508
|
+
|
509
|
+
/* CUSTOMIZE THE CAROUSEL
|
510
|
+
-------------------------------------------------- */
|
511
|
+
|
512
|
+
/* Carousel base class */
|
513
|
+
.carousel {
|
514
|
+
/* max-height: 300px; */
|
515
|
+
margin-bottom: 30px;
|
516
|
+
max-width: 1140px;
|
517
|
+
margin-right: auto;
|
518
|
+
margin-left: auto;
|
519
|
+
}
|
520
|
+
|
521
|
+
/* HOME PAGE STYLES
|
522
|
+
-------------------------------------------------- */
|
523
|
+
/* span.home-highlight {
|
524
|
+
border-top:5px solid #009fda;
|
525
|
+
padding-bottom: 5px;
|
526
|
+
display: block;
|
527
|
+
} */
|
528
|
+
|
529
|
+
.highlights h3 {
|
530
|
+
margin-top: 10px;
|
531
|
+
/* border-bottom: none; */
|
532
|
+
font-size: 1.5em;
|
533
|
+
padding-top: 5px;
|
534
|
+
margin-bottom: 10px;
|
535
|
+
}
|
536
|
+
|
537
|
+
/* make sure home page widget positions cannot overflow and break layout */
|
538
|
+
.col-sm-4, .col-sm-8, .col-sm-12 {
|
539
|
+
overflow: hidden !important;
|
540
|
+
}
|
541
|
+
|
542
|
+
|
543
|
+
.hp-position img.alignnone {
|
544
|
+
padding: 0 0 10px 0;
|
545
|
+
}
|
546
|
+
|
547
|
+
.hp-position img.alignleft {
|
548
|
+
float: left;
|
549
|
+
padding: 0 10px 10px 0;
|
550
|
+
}
|
551
|
+
|
552
|
+
.hp-position img.alignright {
|
553
|
+
float: right;
|
554
|
+
padding: 0 0 10px 10px;
|
555
|
+
}
|
556
|
+
|
557
|
+
.hp-position img.aligncenter {
|
558
|
+
display: block;
|
559
|
+
margin-left: auto;
|
560
|
+
margin-right: auto;
|
561
|
+
padding: 0 0 10px 0;
|
562
|
+
}
|
563
|
+
|
564
|
+
div.hp-widget {
|
565
|
+
margin-bottom: 30px;
|
566
|
+
}
|
567
|
+
|
568
|
+
|
569
|
+
/* THE WEDGE
|
570
|
+
-------------------------------------------------- */
|
571
|
+
|
572
|
+
.the-wedge-bottom {
|
573
|
+
position: relative;
|
574
|
+
float:right;
|
575
|
+
width: 0px;
|
576
|
+
height: 0px;
|
577
|
+
margin-top: -75px;
|
578
|
+
border-style: solid;
|
579
|
+
border-width: 0 0 75px 75px;
|
580
|
+
}
|
581
|
+
|
582
|
+
/* IEEE MB FOOTER STYLES
|
583
|
+
-------------------------------------------------- */
|
584
|
+
.footer {
|
585
|
+
margin-bottom: 0;
|
586
|
+
padding-bottom: 30px;
|
587
|
+
}
|
588
|
+
|
589
|
+
.footer p {
|
590
|
+
font-size: 0.95em;
|
591
|
+
}
|
592
|
+
|
593
|
+
.footer p a, footer ul li a{
|
594
|
+
text-decoration: underline;
|
595
|
+
}
|
596
|
+
|
597
|
+
.footer p a {
|
598
|
+
padding: 0 5px;
|
599
|
+
}
|
600
|
+
|
601
|
+
.footer p a:first-child {
|
602
|
+
padding-left: 0;
|
603
|
+
}
|
604
|
+
|
605
|
+
#ieee_mb {
|
606
|
+
float: right;
|
607
|
+
padding: 0.5em 0;
|
608
|
+
}
|
609
|
+
|
610
|
+
/* pull footer links inline */
|
611
|
+
footer ul {
|
612
|
+
padding: 0;
|
613
|
+
margin-bottom: 10px;
|
614
|
+
}
|
615
|
+
|
616
|
+
footer ul li {
|
617
|
+
display: inline;
|
618
|
+
padding: 0;
|
619
|
+
margin: 0;
|
620
|
+
}
|
621
|
+
|
622
|
+
footer ul li:after {
|
623
|
+
content: " | ";
|
624
|
+
}
|
625
|
+
footer ul li:last-child:after {
|
626
|
+
content: "";
|
627
|
+
}
|
628
|
+
|
629
|
+
|
630
|
+
/* PAGE STYLES
|
631
|
+
-------------------------------------------------- */
|
632
|
+
.edit-post a,.edit-post a:focus, .edit-post a:hover {
|
633
|
+
text-decoration: none;
|
634
|
+
}
|
635
|
+
.site-content {
|
636
|
+
margin-bottom: 30px;
|
637
|
+
z-index: 0; /* make sure this doesn't show above dropdown menu item */
|
638
|
+
}
|
639
|
+
|
640
|
+
.breadcrumb {
|
641
|
+
/*border-radius:0;*/
|
642
|
+
/* margin: 20px 0; */
|
643
|
+
/*padding: 8px 15px 8px 0;*/
|
644
|
+
}
|
645
|
+
|
646
|
+
.breadcrumb>li+li:before {
|
647
|
+
content: "/\00a0";
|
648
|
+
padding: 0 5px 0 10px;
|
649
|
+
}
|
650
|
+
|
651
|
+
.page-content, .front-page {
|
652
|
+
/* padding-top: 20px; */ /* for background images */
|
653
|
+
overflow: hidden!important;
|
654
|
+
/* background-color: #eee; */ /* for background images */
|
655
|
+
padding-top: 30px;
|
656
|
+
margin-bottom: 70px;
|
657
|
+
/*max-width: 1138px; */ /* for background images */
|
658
|
+
}
|
659
|
+
|
660
|
+
.front-page .row {
|
661
|
+
margin-bottom: 30px;
|
662
|
+
}
|
663
|
+
|
664
|
+
.page-content h1 {
|
665
|
+
/* border-bottom: 2px solid #009fda; */
|
666
|
+
padding-bottom: 2px;
|
667
|
+
margin-bottom: 20px;
|
668
|
+
font-size: 2.56em;
|
669
|
+
}
|
670
|
+
|
671
|
+
.page-content h2 {
|
672
|
+
font-size: 1.728em;
|
673
|
+
}
|
674
|
+
|
675
|
+
.page-content h3 {
|
676
|
+
font-size: 1.44em;
|
677
|
+
}
|
678
|
+
|
679
|
+
.page-content h4 {
|
680
|
+
font-size: 1.2em;
|
681
|
+
}
|
682
|
+
|
683
|
+
.page-content img {
|
684
|
+
max-width: 100%;
|
685
|
+
padding: 5px;
|
686
|
+
}
|
687
|
+
|
688
|
+
.page-content .alignleft {
|
689
|
+
float: left;
|
690
|
+
}
|
691
|
+
|
692
|
+
.page-content .alignright {
|
693
|
+
float: right;
|
694
|
+
}
|
695
|
+
|
696
|
+
.page-content .aligncenter {
|
697
|
+
display: block;
|
698
|
+
margin-left: auto;
|
699
|
+
margin-right: auto;
|
700
|
+
}
|
701
|
+
|
702
|
+
.page-header {
|
703
|
+
border-bottom: 0;
|
704
|
+
}
|
705
|
+
|
706
|
+
.page-content .col-md-3, .page-content .col-md-9, .page-content .col-md-12 {
|
707
|
+
padding-bottom: 20px;
|
708
|
+
overflow: hidden;
|
709
|
+
}
|
710
|
+
|
711
|
+
/* sidebar headers, bring to align with breadcrumb */
|
712
|
+
.page-content .col-lg-3 h1, .page-content .col-lg-3 h2, .page-content .col-lg-3 h3,
|
713
|
+
.page-content .col-lg-3 h4, .page-content .col-lg-3 h5, .page-content .col-lg-3 h6 {
|
714
|
+
margin-top: 0;
|
715
|
+
}
|
716
|
+
|
717
|
+
/* apply bootstrap styles to wordpress tables so no classes are needed */
|
718
|
+
.page-content table {
|
719
|
+
width: 100%;
|
720
|
+
margin-bottom: 20px;
|
721
|
+
}
|
722
|
+
|
723
|
+
.page-content table thead {
|
724
|
+
display: table-header-group;
|
725
|
+
vertical-align: middle;
|
726
|
+
border-color: inherit;
|
727
|
+
}
|
728
|
+
|
729
|
+
.page-content table > thead > tr > th, .page-content table > tbody > tr > th,
|
730
|
+
.page-content table > tfoot > tr > th, .page-content table > thead > tr > td,
|
731
|
+
.page-content table > tbody > tr > td, .page-content table > tfoot > tr > td {
|
732
|
+
padding: 8px;
|
733
|
+
line-height: 1.428571429;
|
734
|
+
vertical-align: top;
|
735
|
+
}
|
736
|
+
|
737
|
+
.page-content table > thead > tr > th {
|
738
|
+
vertical-align: bottom;
|
739
|
+
}
|
740
|
+
|
741
|
+
.page-content table > tbody > tr > th {
|
742
|
+
border-bottom: 0;
|
743
|
+
}
|
744
|
+
|
745
|
+
.page-content table tr {
|
746
|
+
display: table-row;
|
747
|
+
vertical-align: inherit;
|
748
|
+
border-color: inherit;
|
749
|
+
}
|
750
|
+
|
751
|
+
.page-content article.post {
|
752
|
+
margin: 0 0 60px 0;
|
753
|
+
}
|
754
|
+
|
755
|
+
|
756
|
+
.cat-links, .tags-links {
|
757
|
+
display: block;
|
758
|
+
clear: both;
|
759
|
+
}
|
760
|
+
.read-more {
|
761
|
+
display: block;
|
762
|
+
clear: both;
|
763
|
+
}
|
764
|
+
|
765
|
+
.search-results .page-content article {
|
766
|
+
margin-bottom: 40px;
|
767
|
+
}
|
768
|
+
|
769
|
+
h4 {
|
770
|
+
clear: both;
|
771
|
+
margin-top: 10px;
|
772
|
+
}
|
773
|
+
|
774
|
+
.pull-left.img-pad{
|
775
|
+
margin: 0 5px 5px 0;
|
776
|
+
}
|
777
|
+
|
778
|
+
hr.clear {
|
779
|
+
border-top: transparent;
|
780
|
+
padding: 10px 0;
|
781
|
+
display: block;
|
782
|
+
clear: both;
|
783
|
+
}
|
784
|
+
|
785
|
+
code {
|
786
|
+
white-space: normal;
|
787
|
+
}
|
788
|
+
|
789
|
+
/*div.widgets {
|
790
|
+
margin-top: 20px;
|
791
|
+
}*/
|
792
|
+
|
793
|
+
.widgets h3 {
|
794
|
+
margin-top: 0px;
|
795
|
+
/* border-bottom: none; */
|
796
|
+
font-size: 1.5em;
|
797
|
+
padding-top: 5px;
|
798
|
+
margin-bottom: 10px;
|
799
|
+
}
|
800
|
+
|
801
|
+
/* first level is parent - show no bullets */
|
802
|
+
.sitemap ul > li {
|
803
|
+
list-style-type: none;
|
804
|
+
}
|
805
|
+
|
806
|
+
/* children, show bullts */
|
807
|
+
.sitemap ul > li > ul > li {
|
808
|
+
list-style-type: disc;
|
809
|
+
}
|
810
|
+
|
811
|
+
/* join / renew button styles */
|
812
|
+
|
813
|
+
.join-renew a.btn {
|
814
|
+
margin-right: 10px;
|
815
|
+
}
|
816
|
+
|
817
|
+
.entry-meta {
|
818
|
+
clear: both;
|
819
|
+
}
|
820
|
+
|
821
|
+
|
822
|
+
/* ALL IN ONE CALENDAR OVERRIDES
|
823
|
+
-------------------------------------------------- */
|
824
|
+
.page-content .type-ai1ec_event {
|
825
|
+
margin-bottom: 50px;
|
826
|
+
}
|
827
|
+
|
828
|
+
.ai1ec-calendar-view, .ai1ec-calendar-view table {
|
829
|
+
max-width: 1140px;
|
830
|
+
}
|
831
|
+
|
832
|
+
.ai1ec-week-view .ai1ec-allday-events {
|
833
|
+
max-width: 171px;
|
834
|
+
}
|
835
|
+
|
836
|
+
.ai1ec-posterboard-view .ai1ec-event-wrap {
|
837
|
+
margin: 0 20px 20px 0;
|
838
|
+
}
|
839
|
+
|
840
|
+
.ai1ec-views-dropdown a img {
|
841
|
+
margin: 0!important;
|
842
|
+
}
|
843
|
+
/*
|
844
|
+
.ai1ec-action-week .ai1ec-pagination a, .ai1ec-action-oneday .ai1ec-pagination a {
|
845
|
+
width: 50%;
|
846
|
+
}
|
847
|
+
|
848
|
+
.ai1ec-prev-week, .ai1ec-next-week {
|
849
|
+
width: 50%;
|
850
|
+
}
|
851
|
+
*/
|
852
|
+
|
853
|
+
/* upcoming events */
|
854
|
+
.ai1ec-agenda-view .ai1ec-date.ai1ec-today, .ai1ec-agenda-widget-view .ai1ec-date.ai1ec-today {
|
855
|
+
border-top: none;
|
856
|
+
}
|
857
|
+
|
858
|
+
/* SECONDARY NAV ADDITIONAL STYLES
|
859
|
+
-------------------------------------------------- */
|
860
|
+
.list-group > .list-group {
|
861
|
+
margin-bottom: -1px;
|
862
|
+
}
|
863
|
+
|
864
|
+
.list-group > .list-group > a {
|
865
|
+
padding-left: 30px;
|
866
|
+
}
|
867
|
+
|
868
|
+
/*
|
869
|
+
.list-group > .list-group > a:before {
|
870
|
+
font-family: 'Glyphicons Halflings';
|
871
|
+
-webkit-font-smoothing: antialiased;
|
872
|
+
-moz-osx-font-smoothing: grayscale;
|
873
|
+
*/
|
874
|
+
/* content: "\e080"; */ /* chevron-right */
|
875
|
+
/* content: "\2212"; */ /* minus */
|
876
|
+
/* content: "\e072";*/ /* play */
|
877
|
+
/*
|
878
|
+
font-size: 0.5em;
|
879
|
+
padding-left: 0;
|
880
|
+
*/
|
881
|
+
/* padding-right: 10px; */
|
882
|
+
/*
|
883
|
+
margin-left: -10px;
|
884
|
+
position: absolute;
|
885
|
+
top: 15px;
|
886
|
+
*/
|
887
|
+
/* left: 15px; */
|
888
|
+
/* } */
|
889
|
+
|
890
|
+
.list-group > .list-group > .list-group > a {
|
891
|
+
padding-left: 40px;
|
892
|
+
}
|
893
|
+
|
894
|
+
.list-group > .list-group > .list-group > a, .list-group > .list-group > .list-group > a {
|
895
|
+
padding-left: 50px;
|
896
|
+
}
|
897
|
+
|
898
|
+
a.list-group-item.active, a.list-group-item.active:hover, a.list-group-item.active:focus {
|
899
|
+
z-index: 2;
|
900
|
+
}
|
901
|
+
|
902
|
+
/* PAGING NAVIGATION
|
903
|
+
-------------------------------------------------- */
|
904
|
+
.nav-links {
|
905
|
+
width: 100%;
|
906
|
+
display: inline-block;
|
907
|
+
}
|
908
|
+
|
909
|
+
.post-navigation, .paging-navigation {
|
910
|
+
margin: 3em 0 3em;
|
911
|
+
display: block;
|
912
|
+
}
|
913
|
+
|
914
|
+
/*
|
915
|
+
.nav-previous, .nav-next {
|
916
|
+
display: inline;
|
917
|
+
}
|
918
|
+
*/
|
919
|
+
|
920
|
+
/* COMMENTS
|
921
|
+
-------------------------------------------------- */
|
922
|
+
.comment-list {
|
923
|
+
padding-left: 0;
|
924
|
+
}
|
925
|
+
.comment-list, .comment-list .children {
|
926
|
+
list-style-type: none;
|
927
|
+
}
|
928
|
+
|
929
|
+
.comment .comment-body {
|
930
|
+
margin: 20px 0;
|
931
|
+
}
|
932
|
+
|
933
|
+
.avatar {
|
934
|
+
display: inline;
|
935
|
+
}
|
936
|
+
|
937
|
+
#reply-title {
|
938
|
+
margin-top: 40px;
|
939
|
+
}
|
940
|
+
|
941
|
+
/* ADMIN EDIT LINKS
|
942
|
+
-------------------------------------------------- */
|
943
|
+
.edit-link {
|
944
|
+
margin: 10px 0;
|
945
|
+
display: block;
|
946
|
+
clear: both;
|
947
|
+
}
|
948
|
+
|
949
|
+
/* FORM STYLES
|
950
|
+
-------------------------------------------------- */
|
951
|
+
.gform_wrapper {
|
952
|
+
|
953
|
+
}
|
954
|
+
|
955
|
+
.gform_wrapper:before,
|
956
|
+
.gform_wrapper:after {
|
957
|
+
display: table;
|
958
|
+
content: " ";
|
959
|
+
}
|
960
|
+
|
961
|
+
.gform_wrapper:after {
|
962
|
+
clear: both;
|
963
|
+
}
|
964
|
+
|
965
|
+
.gform_wrapper {
|
966
|
+
margin-bottom: 15px;
|
967
|
+
}
|
968
|
+
|
969
|
+
.gform_wrapper .gfield_checkbox li, .gform_wrapper .gfield_radio li {
|
970
|
+
/* margin: 0 !important; */
|
971
|
+
}
|
972
|
+
|
973
|
+
.ginput_container input, .ginput_container textarea, .ginput_container input[type=checkbox], .ginput_container input[type=radio] {
|
974
|
+
display: block;
|
975
|
+
width: 100%;
|
976
|
+
height: 34px;
|
977
|
+
padding: 6px 12px;
|
978
|
+
font-size: 14px;
|
979
|
+
line-height: 1.42857143;
|
980
|
+
background-image: none;
|
981
|
+
border-radius: 4px;
|
982
|
+
/*
|
983
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
|
984
|
+
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
|
985
|
+
*/
|
986
|
+
-webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
|
987
|
+
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
|
988
|
+
}
|
989
|
+
|
990
|
+
.ginput_container input:focus, .ginput_container textarea:focus
|
991
|
+
{
|
992
|
+
border-color: rgba(82,168,236,.8);
|
993
|
+
outline: 0;
|
994
|
+
outline: thin dotted \9;
|
995
|
+
-moz-box-shadow: 0 0 8px rgba(82,168,236,.6);
|
996
|
+
box-shadow: 0 0 8px rgba(82,168,236,.6);
|
997
|
+
}
|
998
|
+
|
999
|
+
.gform_wrapper .gfield_checkbox li label, .gform_wrapper .gfield_radio li label {
|
1000
|
+
line-height: 1 !important;
|
1001
|
+
}
|
1002
|
+
|
1003
|
+
.gform_wrapper .gfield_checkbox li input[type=checkbox], .gform_wrapper .gfield_radio li input[type=radio], .gform_wrapper .gfield_checkbox li input {
|
1004
|
+
margin-left: 5px !important;
|
1005
|
+
}
|
1006
|
+
|
1007
|
+
.gform_wrapper.gf_browser_chrome .gfield_checkbox li input[type=checkbox], .gform_wrapper.gf_browser_chrome .gfield_radio li input[type=radio], .gform_wrapper.gf_browser_chrome .gfield_checkbox li input {
|
1008
|
+
margin-top: 0 !important;
|
1009
|
+
}
|
1010
|
+
|
1011
|
+
|
1012
|
+
.ginput_container input[type=checkbox], .ginput_container input[type=radio] {
|
1013
|
+
display: block;
|
1014
|
+
height: auto;
|
1015
|
+
padding-left: 20px;
|
1016
|
+
margin-top: 10px;
|
1017
|
+
margin-bottom: 10px;
|
1018
|
+
line-height: normal !important;
|
1019
|
+
}
|
1020
|
+
|
1021
|
+
.ginput_container label {
|
1022
|
+
font-weight: 400;
|
1023
|
+
cursor: pointer;
|
1024
|
+
vertical-align: bottom;
|
1025
|
+
}
|
1026
|
+
|
1027
|
+
input.gform_button, #submit {
|
1028
|
+
display: inline-block;
|
1029
|
+
padding: 6px 12px;
|
1030
|
+
margin-bottom: 0;
|
1031
|
+
font-size: 14px;
|
1032
|
+
font-weight: normal;
|
1033
|
+
line-height: 1.428571429;
|
1034
|
+
text-align: center;
|
1035
|
+
white-space: nowrap;
|
1036
|
+
vertical-align: middle;
|
1037
|
+
cursor: pointer;
|
1038
|
+
-webkit-user-select: none;
|
1039
|
+
-moz-user-select: none;
|
1040
|
+
-ms-user-select: none;
|
1041
|
+
-o-user-select: none;
|
1042
|
+
user-select: none;
|
1043
|
+
background-image: none;
|
1044
|
+
border-radius: 4px;
|
1045
|
+
}
|
1046
|
+
|
1047
|
+
input.gform_button:focus, #submit:focus {
|
1048
|
+
outline: 0;
|
1049
|
+
outline: thin dotted \9;
|
1050
|
+
-moz-box-shadow: 0 0 8px rgba(82,168,236,.6);
|
1051
|
+
box-shadow: 0 0 8px rgba(82,168,236,.6);
|
1052
|
+
}
|
1053
|
+
|
1054
|
+
input.gform_button:active, #submit:active {
|
1055
|
+
background-image: none;
|
1056
|
+
outline: 0;
|
1057
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
1058
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
|
1059
|
+
}
|
1060
|
+
|
1061
|
+
.form-group.col-lg-6 {
|
1062
|
+
padding-left: 0;
|
1063
|
+
}
|
1064
|
+
|
1065
|
+
/* GALLERY STYLES
|
1066
|
+
-------------------------------------------------- */
|
1067
|
+
.gallery a {
|
1068
|
+
cursor: default;
|
1069
|
+
}
|
1070
|
+
|
1071
|
+
.gallery {
|
1072
|
+
margin: auto -6px;
|
1073
|
+
padding: 6px 0;
|
1074
|
+
line-height: 1;
|
1075
|
+
overflow-x: hidden;
|
1076
|
+
}
|
1077
|
+
|
1078
|
+
.ie7 .gallery,
|
1079
|
+
.ie8 .gallery {
|
1080
|
+
margin: auto;
|
1081
|
+
}
|
1082
|
+
|
1083
|
+
.gallery .gallery-item {
|
1084
|
+
float: left;
|
1085
|
+
margin: 0;
|
1086
|
+
text-align: center;
|
1087
|
+
padding: 6px;
|
1088
|
+
-webkit-box-sizing: border-box;
|
1089
|
+
-moz-box-sizing: border-box;
|
1090
|
+
box-sizing: border-box;
|
1091
|
+
}
|
1092
|
+
|
1093
|
+
.ie7 .gallery .gallery-item,
|
1094
|
+
.ie8 .gallery .gallery-item {
|
1095
|
+
padding: 6px 0;
|
1096
|
+
}
|
1097
|
+
|
1098
|
+
.gallery .gallery-caption,
|
1099
|
+
.gallery .gallery-icon {
|
1100
|
+
margin: 0;
|
1101
|
+
}
|
1102
|
+
|
1103
|
+
.gallery .gallery-caption {
|
1104
|
+
font-size: 13px;
|
1105
|
+
margin: 4px 0;
|
1106
|
+
}
|
1107
|
+
|
1108
|
+
.gallery-columns-1 .gallery-item {
|
1109
|
+
width: 100%;
|
1110
|
+
}
|
1111
|
+
|
1112
|
+
.gallery-columns-2 .gallery-item {
|
1113
|
+
width: 50%;
|
1114
|
+
}
|
1115
|
+
|
1116
|
+
.gallery-columns-3 .gallery-item {
|
1117
|
+
width: 33.333%;
|
1118
|
+
}
|
1119
|
+
|
1120
|
+
.ie8 .gallery-columns-3 .gallery-item,
|
1121
|
+
.ie7 .gallery-columns-3 .gallery-item {
|
1122
|
+
width: 33%;
|
1123
|
+
}
|
1124
|
+
|
1125
|
+
.gallery-columns-4 .gallery-item {
|
1126
|
+
width: 25%;
|
1127
|
+
}
|
1128
|
+
|
1129
|
+
.gallery-columns-5 .gallery-item {
|
1130
|
+
width: 20%;
|
1131
|
+
}
|
1132
|
+
|
1133
|
+
.gallery-columns-6 .gallery-item {
|
1134
|
+
width: 16.665%;
|
1135
|
+
}
|
1136
|
+
|
1137
|
+
.gallery-columns-7 .gallery-item {
|
1138
|
+
width: 14.285%;
|
1139
|
+
}
|
1140
|
+
|
1141
|
+
.gallery-columns-8 .gallery-item {
|
1142
|
+
width: 12.5%;
|
1143
|
+
}
|
1144
|
+
|
1145
|
+
.gallery-columns-9 .gallery-item {
|
1146
|
+
width: 11.111%;
|
1147
|
+
}
|
1148
|
+
|
1149
|
+
.gallery img {
|
1150
|
+
max-width: 100%;
|
1151
|
+
height: auto;
|
1152
|
+
border: none;
|
1153
|
+
padding: 0;
|
1154
|
+
}
|
1155
|
+
|
1156
|
+
img.wp-oembed {
|
1157
|
+
border: 1px dashed #888;
|
1158
|
+
background: #f7f5f2 url(images/embedded.png) no-repeat scroll center center;
|
1159
|
+
width: 300px;
|
1160
|
+
height: 250px;
|
1161
|
+
outline: 0;
|
1162
|
+
}
|
1163
|
+
|
1164
|
+
|
1165
|
+
/* ADDITIONAL RESPONSIVE STYLES
|
1166
|
+
-------------------------------------------------- */
|
1167
|
+
@media (min-width: 767px) {
|
1168
|
+
.img-responsive {
|
1169
|
+
display: inline-block;
|
1170
|
+
}
|
1171
|
+
}
|
1172
|
+
@media (max-width: 1200px) {
|
1173
|
+
/* keep navigation on one line */
|
1174
|
+
.navbar-default .navbar-nav a {
|
1175
|
+
font-size: 14px;
|
1176
|
+
padding: 8px;
|
1177
|
+
}
|
1178
|
+
.dropdown-toggle:after {
|
1179
|
+
display:none;
|
1180
|
+
}
|
1181
|
+
|
1182
|
+
}
|
1183
|
+
|
1184
|
+
@media (max-width: 1042px) {
|
1185
|
+
.global-nav a {
|
1186
|
+
font-size: 12px;
|
1187
|
+
}
|
1188
|
+
|
1189
|
+
a.sign-in {
|
1190
|
+
background-position: 0 2px;
|
1191
|
+
}
|
1192
|
+
|
1193
|
+
}
|
1194
|
+
|
1195
|
+
/* clear the background image */
|
1196
|
+
@media (max-width: 912px) {
|
1197
|
+
/* clear the background image */
|
1198
|
+
body.custom-background {
|
1199
|
+
background-image: none !important;
|
1200
|
+
}
|
1201
|
+
}
|
1202
|
+
|
1203
|
+
@media (max-width: 991px) {
|
1204
|
+
#content .pull-right {
|
1205
|
+
float: left !important;
|
1206
|
+
max-width: 100%;
|
1207
|
+
}
|
1208
|
+
|
1209
|
+
div.widgets > hr {
|
1210
|
+
margin-top: 30px;
|
1211
|
+
}
|
1212
|
+
|
1213
|
+
.widgets h3 {
|
1214
|
+
margin-top: 10px;
|
1215
|
+
/* border-bottom: none; */
|
1216
|
+
font-size: 1.5em;
|
1217
|
+
padding-top: 5px;
|
1218
|
+
margin-bottom: 10px;
|
1219
|
+
}
|
1220
|
+
}
|
1221
|
+
|
1222
|
+
@media (max-width: 767px) {
|
1223
|
+
/* bring content in line with body content */
|
1224
|
+
.global-nav, .footer {
|
1225
|
+
padding-right: 0;
|
1226
|
+
padding-left: 0;
|
1227
|
+
}
|
1228
|
+
|
1229
|
+
.global-nav a {
|
1230
|
+
font-size: 10px;
|
1231
|
+
}
|
1232
|
+
|
1233
|
+
/* reduce jumbotron banner bottom margin */
|
1234
|
+
.banner {
|
1235
|
+
margin-bottom: 10px;
|
1236
|
+
}
|
1237
|
+
|
1238
|
+
/* remove container search margin */
|
1239
|
+
.search {
|
1240
|
+
margin-bottom: 0;
|
1241
|
+
}
|
1242
|
+
|
1243
|
+
/* make sure we have padding to left and right of navbar elements */
|
1244
|
+
.navbar-toggle {
|
1245
|
+
margin-left: 15px;
|
1246
|
+
}
|
1247
|
+
|
1248
|
+
.search-form {
|
1249
|
+
margin-right: 15px;
|
1250
|
+
}
|
1251
|
+
|
1252
|
+
/* make toggle clickable with mobile search inline */
|
1253
|
+
.navbar-toggle {
|
1254
|
+
z-index: 1;
|
1255
|
+
}
|
1256
|
+
|
1257
|
+
.navbar-default .navbar-collapse {
|
1258
|
+
border-bottom: none;
|
1259
|
+
max-height: none;
|
1260
|
+
clear: both;
|
1261
|
+
margin: 0 -15px;
|
1262
|
+
/* min-height: inherit; */
|
1263
|
+
}
|
1264
|
+
|
1265
|
+
.navbar-nav {
|
1266
|
+
margin: 0 0 0 0;
|
1267
|
+
}
|
1268
|
+
|
1269
|
+
.navbar-default .navbar-nav a {
|
1270
|
+
padding: 15px 15px;
|
1271
|
+
}
|
1272
|
+
|
1273
|
+
.navbar-nav .open .dropdown-menu>li>a, .navbar-nav .open .dropdown-menu .dropdown-header {
|
1274
|
+
padding: 15px 15px 15px 35px;
|
1275
|
+
}
|
1276
|
+
|
1277
|
+
.navbar-nav .open .dropdown-menu.sub-menu>li>a, .navbar-nav .open .dropdown-menu.sub-menu .dropdown-header {
|
1278
|
+
padding: 15px 15px 15px 55px;
|
1279
|
+
}
|
1280
|
+
|
1281
|
+
.navbar-nav .dropdown-menu {
|
1282
|
+
padding: 0;
|
1283
|
+
z-index: 1; /* make sure dropdown menu shows above other elements */
|
1284
|
+
position: relative;
|
1285
|
+
width: 100%;
|
1286
|
+
min-width: 160px;
|
1287
|
+
padding: 5px 0;
|
1288
|
+
margin: 2px 0 0;
|
1289
|
+
list-style: none;
|
1290
|
+
font-size: 14px;
|
1291
|
+
background-color: transparent;
|
1292
|
+
border: 0;
|
1293
|
+
border: 0;
|
1294
|
+
border-radius: 0;
|
1295
|
+
-webkit-box-shadow: 0;
|
1296
|
+
box-shadow: 0;
|
1297
|
+
background-clip: padding-box;
|
1298
|
+
}
|
1299
|
+
|
1300
|
+
.caret {
|
1301
|
+
display: none;
|
1302
|
+
}
|
1303
|
+
|
1304
|
+
/* inline mobile search with toggle */
|
1305
|
+
.mobile-search {
|
1306
|
+
top: 8px;
|
1307
|
+
position: absolute;
|
1308
|
+
right: 0;
|
1309
|
+
}
|
1310
|
+
|
1311
|
+
input.gsc-input {
|
1312
|
+
border-top-left-radius: 4px !important;
|
1313
|
+
border-bottom-left-radius: 4px !important;
|
1314
|
+
}
|
1315
|
+
|
1316
|
+
/* make sure there is spacing between search and social icons when stacked */
|
1317
|
+
ul.social-icons {
|
1318
|
+
margin-top: 10px;
|
1319
|
+
}
|
1320
|
+
|
1321
|
+
.carousel-caption {
|
1322
|
+
left: 0;
|
1323
|
+
right: 0;
|
1324
|
+
padding-bottom: 0;
|
1325
|
+
}
|
1326
|
+
|
1327
|
+
.hp-position {
|
1328
|
+
margin-bottom: 40px;
|
1329
|
+
}
|
1330
|
+
|
1331
|
+
/* stack footer links */
|
1332
|
+
footer > ul {
|
1333
|
+
margin-bottom: 10px;
|
1334
|
+
}
|
1335
|
+
footer > ul li {
|
1336
|
+
display: list-item;
|
1337
|
+
padding: 0;
|
1338
|
+
margin: 0;
|
1339
|
+
list-style-type: none;
|
1340
|
+
}
|
1341
|
+
|
1342
|
+
footer > ul li:after {
|
1343
|
+
content: "";
|
1344
|
+
}
|
1345
|
+
|
1346
|
+
}
|
1347
|
+
|
1348
|
+
/* increase global nav padding */
|
1349
|
+
@media (max-width: 600px) {
|
1350
|
+
h2.site-description {
|
1351
|
+
font-size: 24px;
|
1352
|
+
}
|
1353
|
+
}
|
1354
|
+
|
1355
|
+
|
1356
|
+
@media (max-width: 540px) {
|
1357
|
+
.global-nav ul {
|
1358
|
+
padding-bottom: 30px;
|
1359
|
+
}
|
1360
|
+
}
|