ieee-students-branch-jekyll-theme 0.1.01
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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,375 @@
|
|
1
|
+
/* IEEE GLOBAL HEADER
|
2
|
+
-------------------------------------------------- */
|
3
|
+
.global-nav {
|
4
|
+
background-color: #CCCCCC;
|
5
|
+
color: #000;
|
6
|
+
}
|
7
|
+
|
8
|
+
.global-nav a{
|
9
|
+
color: #000;
|
10
|
+
}
|
11
|
+
|
12
|
+
|
13
|
+
a.sign-in {
|
14
|
+
background: url(../images/icon_key_white.gif);
|
15
|
+
color: #000;
|
16
|
+
}
|
17
|
+
|
18
|
+
.dropdown .sign-in-container a {
|
19
|
+
color: #428bca;
|
20
|
+
}
|
21
|
+
|
22
|
+
.dropdown .sign-in-container {
|
23
|
+
color: #000;
|
24
|
+
}
|
25
|
+
|
26
|
+
.dropdown .sign-in-container > .glyphicon, #mobile-signin .glyphicon {
|
27
|
+
color: #E37222;
|
28
|
+
}
|
29
|
+
|
30
|
+
.has-children {
|
31
|
+
color: #000;
|
32
|
+
}
|
33
|
+
.active > .has-children {
|
34
|
+
color: #000;
|
35
|
+
}
|
36
|
+
|
37
|
+
|
38
|
+
/* HEADER STYLES
|
39
|
+
-------------------------------------------------- */
|
40
|
+
.site-title a, .site-title a:hover, .site-title a:active, .site-title a:visited {
|
41
|
+
color: #fff;
|
42
|
+
text-decoration: none;
|
43
|
+
}
|
44
|
+
|
45
|
+
.banner{
|
46
|
+
background-color: #669933;
|
47
|
+
}
|
48
|
+
|
49
|
+
.navbar-default .navbar-collapse,.navbar-default .navbar-form {
|
50
|
+
border-color: transparent;
|
51
|
+
}
|
52
|
+
|
53
|
+
.navbar-wrapper .container {
|
54
|
+
/* background-color: #eee; */
|
55
|
+
background-color: transparent;
|
56
|
+
/* border-bottom: 2px solid #919191; */
|
57
|
+
}
|
58
|
+
|
59
|
+
.navbar-default {
|
60
|
+
background-color: transparent;
|
61
|
+
border: 0;
|
62
|
+
}
|
63
|
+
|
64
|
+
.navbar-default .navbar-collapse {
|
65
|
+
border-bottom: 2px solid #CCC;
|
66
|
+
}
|
67
|
+
|
68
|
+
.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:hover, .navbar-default .navbar-nav>.open>a:focus {
|
69
|
+
background-color: #CCC;
|
70
|
+
color: #262626;
|
71
|
+
}
|
72
|
+
|
73
|
+
.dropdown-menu>li>a:hover {
|
74
|
+
text-decoration: none;
|
75
|
+
color: #262626;
|
76
|
+
background-color: #CCC;
|
77
|
+
}
|
78
|
+
|
79
|
+
.dropdown-menu>.active>a, .dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus {
|
80
|
+
color: #fff;
|
81
|
+
background-color: #669933;
|
82
|
+
}
|
83
|
+
|
84
|
+
.dropdown-submenu>a:after {
|
85
|
+
border-left-color: #777;
|
86
|
+
}
|
87
|
+
|
88
|
+
.dropdown-submenu:hover > a:after {
|
89
|
+
border-left-color: #000;
|
90
|
+
}
|
91
|
+
|
92
|
+
.navbar-default .navbar-nav>li>a {
|
93
|
+
color: #777;
|
94
|
+
}
|
95
|
+
|
96
|
+
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus {
|
97
|
+
color: #FFFFFF;
|
98
|
+
background-color: #669933;
|
99
|
+
}
|
100
|
+
|
101
|
+
/* SEARCH AND SOCIAL
|
102
|
+
-------------------------------------------------- */
|
103
|
+
.btn-search, input.gsc-search-button {
|
104
|
+
color: #fff !important;
|
105
|
+
background-color: #669933 !important;
|
106
|
+
border-color: #639234 !important;
|
107
|
+
}
|
108
|
+
|
109
|
+
.btn-search:hover, input.gsc-search-button:hover {
|
110
|
+
color: #fff !important;
|
111
|
+
background-color: #5a872d !important;
|
112
|
+
border-color: #639234 !important;
|
113
|
+
}
|
114
|
+
|
115
|
+
.btn-search:focus, input.gsc-search-button:focus {
|
116
|
+
color: #fff !important;
|
117
|
+
background-color: #5a872d !important;
|
118
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
119
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
120
|
+
}
|
121
|
+
|
122
|
+
/* GLYPHICON
|
123
|
+
-------------------------------------------------- */
|
124
|
+
.glyphicon {
|
125
|
+
color: #669933;
|
126
|
+
}
|
127
|
+
|
128
|
+
/* BUTTON STYLES
|
129
|
+
-------------------------------------------------- */
|
130
|
+
.btn-primary {
|
131
|
+
color: #fff;
|
132
|
+
background-color: #669933;
|
133
|
+
border-color: #639234;
|
134
|
+
}
|
135
|
+
|
136
|
+
.btn-primary:hover {
|
137
|
+
color: #fff;
|
138
|
+
background-color: #5a872d;
|
139
|
+
border-color: #639234;
|
140
|
+
}
|
141
|
+
|
142
|
+
.btn-primary:active, .btn-primary:focus {
|
143
|
+
background-color: #5a872d;
|
144
|
+
border-color: #639234;
|
145
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
146
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
147
|
+
}
|
148
|
+
|
149
|
+
/* HOME PAGE STYLES
|
150
|
+
-------------------------------------------------- */
|
151
|
+
.highlights h3, .widgets h3 {
|
152
|
+
border-top: 3px solid #669933;
|
153
|
+
color: #000;
|
154
|
+
}
|
155
|
+
|
156
|
+
/* THE WEDGE
|
157
|
+
-------------------------------------------------- */
|
158
|
+
.the-wedge-bottom {
|
159
|
+
border-color: transparent transparent #669933 transparent;
|
160
|
+
}
|
161
|
+
|
162
|
+
/* IEEE MB FOOTER STYLES
|
163
|
+
-------------------------------------------------- */
|
164
|
+
.footer{
|
165
|
+
background-color: #669933;
|
166
|
+
color: #fff
|
167
|
+
}
|
168
|
+
|
169
|
+
.footer p a, footer ul li a{
|
170
|
+
color: #fff;
|
171
|
+
}
|
172
|
+
|
173
|
+
.footer p a, footer ul li a:hover{
|
174
|
+
color: #fff;
|
175
|
+
}
|
176
|
+
|
177
|
+
/* PAGE STYLES
|
178
|
+
-------------------------------------------------- */
|
179
|
+
/*.breadcrumb {
|
180
|
+
background-color: transparent;
|
181
|
+
border-bottom: 2px solid #669933;
|
182
|
+
}*/
|
183
|
+
|
184
|
+
.breadcrumb {
|
185
|
+
color: #000;
|
186
|
+
}
|
187
|
+
|
188
|
+
.breadcrumb>.active {
|
189
|
+
color: #999;
|
190
|
+
}
|
191
|
+
|
192
|
+
.navbar-collapse, .front-page {
|
193
|
+
background-color: #fff;
|
194
|
+
}
|
195
|
+
|
196
|
+
blockquote {
|
197
|
+
border-left: 2px solid #ccc;
|
198
|
+
}
|
199
|
+
|
200
|
+
.page-content .col-md-3, .page-content .col-md-9, .page-content .col-md-12 {
|
201
|
+
background-color: #fff
|
202
|
+
}
|
203
|
+
|
204
|
+
.page-content table > thead > tr > th, .page-content table > tbody > tr > th,
|
205
|
+
.page-content table > tfoot > tr > th, .page-content table > thead > tr > td,
|
206
|
+
.page-content table > tbody > tr > td, .page-content table > tfoot > tr > td {
|
207
|
+
border-top: 1px solid #ddd;
|
208
|
+
}
|
209
|
+
|
210
|
+
.page-content table > thead > tr > th {
|
211
|
+
border-bottom: 2px solid #ddd;
|
212
|
+
}
|
213
|
+
|
214
|
+
.page-content table > tbody > tr:nth-child(odd) > td, .page-content table > tbody > tr:nth-child(odd) > th, .page-content table > tbody > tr.odd td, .page-content table > tbody > tr.odd th{
|
215
|
+
background-color: #f9f9f9;
|
216
|
+
}
|
217
|
+
|
218
|
+
.page-content table > tbody > tr:hover > td, .page-content table > tbody > tr:hover > th {
|
219
|
+
background-color: #f5f5f5;
|
220
|
+
}
|
221
|
+
|
222
|
+
/* ALL IN ONE CALENDAR OVERRIDES
|
223
|
+
-------------------------------------------------- */
|
224
|
+
.ai1ec-calendar-view > tbody > tr:nth-child(odd) > td, .ai1ec-calendar-view table > tbody > tr:nth-child(odd) > th,
|
225
|
+
.gsc-results-wrapper-visible table > tbody > tr:nth-child(odd) > td {
|
226
|
+
background-color: transparent;
|
227
|
+
}
|
228
|
+
|
229
|
+
.ai1ec-calendar-view table > tbody > tr:hover > td, .ai1ec-calendar-view table > tbody > tr:hover > th,
|
230
|
+
.gsc-results-wrapper-visible table > tbody > tr:hover > th {
|
231
|
+
background-color: transparent;
|
232
|
+
}
|
233
|
+
|
234
|
+
/* upcoming events */
|
235
|
+
.ai1ec-agenda-view .ai1ec-date.ai1ec-today, .ai1ec-agenda-widget-view .ai1ec-date.ai1ec-today {
|
236
|
+
background: #eee;
|
237
|
+
}
|
238
|
+
|
239
|
+
/* SECONDARY NAV ADDITIONAL STYLES
|
240
|
+
-------------------------------------------------- */
|
241
|
+
a.list-group-item.active, a.list-group-item.active:hover, a.list-group-item.active:focus {
|
242
|
+
color: #fff;
|
243
|
+
background-color: #669933;
|
244
|
+
border-color: #669933;
|
245
|
+
}
|
246
|
+
|
247
|
+
|
248
|
+
/* FOR GOOGLE CS
|
249
|
+
-------------------------------------------------- */
|
250
|
+
/* styles for Google CS */
|
251
|
+
input.gsc-input {
|
252
|
+
color: #555 !important;
|
253
|
+
background-color: #fff !important;
|
254
|
+
border: 1px solid #ccc !important;
|
255
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075) !important;
|
256
|
+
box-shadow: inset 0 1px 1px rgba(0,0,0,.075) !important;
|
257
|
+
-webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s !important;
|
258
|
+
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s !important;
|
259
|
+
}
|
260
|
+
|
261
|
+
input.gsc-search-button {
|
262
|
+
border: 1px solid rgba(0, 0, 0, 0) !important;
|
263
|
+
}
|
264
|
+
|
265
|
+
div.gsc-selected-option-container {
|
266
|
+
color: #333 !important;
|
267
|
+
border: 1px solid transparent !important;
|
268
|
+
background-color: #fff !important;
|
269
|
+
border-color: #ccc !important;
|
270
|
+
}
|
271
|
+
|
272
|
+
div.gsc-option-selector {
|
273
|
+
border-right: 4px solid transparent !important;
|
274
|
+
border-left: 4px solid transparent !important;
|
275
|
+
}
|
276
|
+
|
277
|
+
.gsc-tabHeader {
|
278
|
+
border: 1px solid transparent !important;
|
279
|
+
}
|
280
|
+
|
281
|
+
.gsc-tabHeader.gsc-tabhActive {
|
282
|
+
color: #fff !important;
|
283
|
+
background-color: #669933 !important;
|
284
|
+
/* border-color: #639234 !important; */
|
285
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
286
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
287
|
+
}
|
288
|
+
|
289
|
+
.gsc-tabHeader.gsc-tabhInactive {
|
290
|
+
color: #333 !important;
|
291
|
+
background-color: #fff !important;
|
292
|
+
border-color: #ccc !important;
|
293
|
+
}
|
294
|
+
|
295
|
+
.gsc-tabHeader:hover,
|
296
|
+
.gsc-tabHeader:focus {
|
297
|
+
color: #333 !important;
|
298
|
+
background-color: #ebebeb !important;
|
299
|
+
border-color: #adadad !important;
|
300
|
+
}
|
301
|
+
|
302
|
+
.gsc-tabHeader:active {
|
303
|
+
color: #fff !important;
|
304
|
+
background-color: #669933 !important;
|
305
|
+
border-color: #639234 !important;
|
306
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
307
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
308
|
+
}
|
309
|
+
|
310
|
+
.gsc-tabsArea {
|
311
|
+
border-color: transparent !important;
|
312
|
+
}
|
313
|
+
|
314
|
+
.ginput_container input, .ginput_container textarea, .ginput_container input[type=checkbox], .ginput_container input[type=radio] {
|
315
|
+
color: #555;
|
316
|
+
background-color: #fff;
|
317
|
+
border: 1px solid #000;
|
318
|
+
}
|
319
|
+
|
320
|
+
input.gform_button, #submit {
|
321
|
+
border: 1px solid transparent;
|
322
|
+
color: #fff;
|
323
|
+
background-color: #669933;
|
324
|
+
border-color: #639234;
|
325
|
+
}
|
326
|
+
|
327
|
+
#submit:hover, input.gform_button:hover {
|
328
|
+
border: 1px solid transparent;
|
329
|
+
color: #fff;
|
330
|
+
background-color: #5a872d;
|
331
|
+
border-color: #639234;
|
332
|
+
}
|
333
|
+
|
334
|
+
input.gform_button:focus, #submit:focus {
|
335
|
+
color: #fff;
|
336
|
+
background-color: #5a872d;
|
337
|
+
/* border-color: #adadad; */
|
338
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
339
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
340
|
+
}
|
341
|
+
|
342
|
+
/* ADDITIONAL RESPONSIVE STYLES
|
343
|
+
-------------------------------------------------- */
|
344
|
+
@media (max-width: 991px) {
|
345
|
+
div.widgets > hr {
|
346
|
+
border-top: 2px solid #669933;
|
347
|
+
}
|
348
|
+
}
|
349
|
+
|
350
|
+
/* clear the background image */
|
351
|
+
@media (max-width: 912px) {
|
352
|
+
/* clear the background image */
|
353
|
+
.custom-background {
|
354
|
+
background-color:#fff;
|
355
|
+
}
|
356
|
+
}
|
357
|
+
|
358
|
+
@media (max-width: 767px) {
|
359
|
+
.navbar-default .navbar-nav li:first-child a {
|
360
|
+
border-top: 1px solid #919191;
|
361
|
+
}
|
362
|
+
|
363
|
+
.navbar-default .navbar-nav a {
|
364
|
+
border-bottom: 1px solid #919191;
|
365
|
+
}
|
366
|
+
}
|
367
|
+
|
368
|
+
input.gsc-search-button:hover, input.gsc-search-button:focus {
|
369
|
+
color: #fff !important;
|
370
|
+
}
|
371
|
+
|
372
|
+
input.gsc-search-button:active, input.gsc-search-button.active {
|
373
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
374
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
375
|
+
}
|
@@ -0,0 +1,375 @@
|
|
1
|
+
/* IEEE GLOBAL HEADER
|
2
|
+
-------------------------------------------------- */
|
3
|
+
.global-nav {
|
4
|
+
background-color: #CCCCCC;
|
5
|
+
color: #000;
|
6
|
+
}
|
7
|
+
|
8
|
+
.global-nav a{
|
9
|
+
color: #000;
|
10
|
+
}
|
11
|
+
|
12
|
+
|
13
|
+
a.sign-in {
|
14
|
+
background: url(../images/icon_key_white.gif);
|
15
|
+
color: #000;
|
16
|
+
}
|
17
|
+
|
18
|
+
.dropdown .sign-in-container a {
|
19
|
+
color: #428bca;
|
20
|
+
}
|
21
|
+
|
22
|
+
.dropdown .sign-in-container {
|
23
|
+
color: #000;
|
24
|
+
}
|
25
|
+
|
26
|
+
.dropdown .sign-in-container > .glyphicon, #mobile-signin .glyphicon {
|
27
|
+
color: #E37222;
|
28
|
+
}
|
29
|
+
|
30
|
+
.has-children {
|
31
|
+
color: #000;
|
32
|
+
}
|
33
|
+
.active > .has-children {
|
34
|
+
color: #000;
|
35
|
+
}
|
36
|
+
|
37
|
+
|
38
|
+
/* HEADER STYLES
|
39
|
+
-------------------------------------------------- */
|
40
|
+
.site-title a, .site-title a:hover, .site-title a:active, .site-title a:visited {
|
41
|
+
color: #fff;
|
42
|
+
text-decoration: none;
|
43
|
+
}
|
44
|
+
|
45
|
+
.banner{
|
46
|
+
background-color: #AAAAAA;
|
47
|
+
}
|
48
|
+
|
49
|
+
.navbar-default .navbar-collapse,.navbar-default .navbar-form {
|
50
|
+
border-color: transparent;
|
51
|
+
}
|
52
|
+
|
53
|
+
.navbar-wrapper .container {
|
54
|
+
/* background-color: #eee; */
|
55
|
+
background-color: transparent;
|
56
|
+
/* border-bottom: 2px solid #919191; */
|
57
|
+
}
|
58
|
+
|
59
|
+
.navbar-default {
|
60
|
+
background-color: transparent;
|
61
|
+
border: 0;
|
62
|
+
}
|
63
|
+
|
64
|
+
.navbar-default .navbar-collapse {
|
65
|
+
border-bottom: 2px solid #CCC;
|
66
|
+
}
|
67
|
+
|
68
|
+
.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:hover, .navbar-default .navbar-nav>.open>a:focus {
|
69
|
+
background-color: #CCC;
|
70
|
+
color: #262626;
|
71
|
+
}
|
72
|
+
|
73
|
+
.dropdown-menu>li>a:hover {
|
74
|
+
text-decoration: none;
|
75
|
+
color: #262626;
|
76
|
+
background-color: #CCC;
|
77
|
+
}
|
78
|
+
|
79
|
+
.dropdown-menu>.active>a, .dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus {
|
80
|
+
color: #fff;
|
81
|
+
background-color: #AAAAAA;
|
82
|
+
}
|
83
|
+
|
84
|
+
.dropdown-submenu>a:after {
|
85
|
+
border-left-color: #777;
|
86
|
+
}
|
87
|
+
|
88
|
+
.dropdown-submenu:hover > a:after {
|
89
|
+
border-left-color: #000;
|
90
|
+
}
|
91
|
+
|
92
|
+
.navbar-default .navbar-nav>li>a {
|
93
|
+
color: #777;
|
94
|
+
}
|
95
|
+
|
96
|
+
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus {
|
97
|
+
color: #FFFFFF;
|
98
|
+
background-color: #AAAAAA;
|
99
|
+
}
|
100
|
+
|
101
|
+
/* SEARCH AND SOCIAL
|
102
|
+
-------------------------------------------------- */
|
103
|
+
.btn-search, input.gsc-search-button {
|
104
|
+
color: #fff !important;
|
105
|
+
background-color: #AAAAAA !important;
|
106
|
+
border-color: #949494 !important;
|
107
|
+
}
|
108
|
+
|
109
|
+
.btn-search:hover, input.gsc-search-button:hover {
|
110
|
+
color: #fff !important;
|
111
|
+
background-color: #8f8f8f !important;
|
112
|
+
border-color: #949494 !important;
|
113
|
+
}
|
114
|
+
|
115
|
+
.btn-search:focus, input.gsc-search-button:focus {
|
116
|
+
color: #fff !important;
|
117
|
+
background-color: #8f8f8f !important;
|
118
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
119
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
120
|
+
}
|
121
|
+
|
122
|
+
/* GLYPHICON
|
123
|
+
-------------------------------------------------- */
|
124
|
+
.glyphicon {
|
125
|
+
color: #AAAAAA;
|
126
|
+
}
|
127
|
+
|
128
|
+
/* BUTTON STYLES
|
129
|
+
-------------------------------------------------- */
|
130
|
+
.btn-primary {
|
131
|
+
color: #fff;
|
132
|
+
background-color: #AAAAAA;
|
133
|
+
border-color: #949494;
|
134
|
+
}
|
135
|
+
|
136
|
+
.btn-primary:hover {
|
137
|
+
color: #fff;
|
138
|
+
background-color: #8f8f8f;
|
139
|
+
border-color: #949494;
|
140
|
+
}
|
141
|
+
|
142
|
+
.btn-primary:active, .btn-primary:focus {
|
143
|
+
background-color: #8f8f8f;
|
144
|
+
border-color: #949494;
|
145
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
146
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
147
|
+
}
|
148
|
+
|
149
|
+
/* HOME PAGE STYLES
|
150
|
+
-------------------------------------------------- */
|
151
|
+
.highlights h3, .widgets h3 {
|
152
|
+
border-top: 3px solid #AAAAAA;
|
153
|
+
color: #000;
|
154
|
+
}
|
155
|
+
|
156
|
+
/* THE WEDGE
|
157
|
+
-------------------------------------------------- */
|
158
|
+
.the-wedge-bottom {
|
159
|
+
border-color: transparent transparent #AAAAAA transparent;
|
160
|
+
}
|
161
|
+
|
162
|
+
/* IEEE MB FOOTER STYLES
|
163
|
+
-------------------------------------------------- */
|
164
|
+
.footer{
|
165
|
+
background-color: #AAAAAA;
|
166
|
+
color: #fff
|
167
|
+
}
|
168
|
+
|
169
|
+
.footer p a, footer ul li a{
|
170
|
+
color: #fff;
|
171
|
+
}
|
172
|
+
|
173
|
+
.footer p a, footer ul li a:hover{
|
174
|
+
color: #fff;
|
175
|
+
}
|
176
|
+
|
177
|
+
/* PAGE STYLES
|
178
|
+
-------------------------------------------------- */
|
179
|
+
/*.breadcrumb {
|
180
|
+
background-color: transparent;
|
181
|
+
border-bottom: 2px solid #AAAAAA;
|
182
|
+
}*/
|
183
|
+
|
184
|
+
.breadcrumb {
|
185
|
+
color: #000;
|
186
|
+
}
|
187
|
+
|
188
|
+
.breadcrumb>.active {
|
189
|
+
color: #999;
|
190
|
+
}
|
191
|
+
|
192
|
+
.navbar-collapse, .front-page {
|
193
|
+
background-color: #fff;
|
194
|
+
}
|
195
|
+
|
196
|
+
blockquote {
|
197
|
+
border-left: 2px solid #ccc;
|
198
|
+
}
|
199
|
+
|
200
|
+
.page-content .col-md-3, .page-content .col-md-9, .page-content .col-md-12 {
|
201
|
+
background-color: #fff
|
202
|
+
}
|
203
|
+
|
204
|
+
.page-content table > thead > tr > th, .page-content table > tbody > tr > th,
|
205
|
+
.page-content table > tfoot > tr > th, .page-content table > thead > tr > td,
|
206
|
+
.page-content table > tbody > tr > td, .page-content table > tfoot > tr > td {
|
207
|
+
border-top: 1px solid #ddd;
|
208
|
+
}
|
209
|
+
|
210
|
+
.page-content table > thead > tr > th {
|
211
|
+
border-bottom: 2px solid #ddd;
|
212
|
+
}
|
213
|
+
|
214
|
+
.page-content table > tbody > tr:nth-child(odd) > td, .page-content table > tbody > tr:nth-child(odd) > th, .page-content table > tbody > tr.odd td, .page-content table > tbody > tr.odd th{
|
215
|
+
background-color: #f9f9f9;
|
216
|
+
}
|
217
|
+
|
218
|
+
.page-content table > tbody > tr:hover > td, .page-content table > tbody > tr:hover > th {
|
219
|
+
background-color: #f5f5f5;
|
220
|
+
}
|
221
|
+
|
222
|
+
/* ALL IN ONE CALENDAR OVERRIDES
|
223
|
+
-------------------------------------------------- */
|
224
|
+
.ai1ec-calendar-view > tbody > tr:nth-child(odd) > td, .ai1ec-calendar-view table > tbody > tr:nth-child(odd) > th,
|
225
|
+
.gsc-results-wrapper-visible table > tbody > tr:nth-child(odd) > td {
|
226
|
+
background-color: transparent;
|
227
|
+
}
|
228
|
+
|
229
|
+
.ai1ec-calendar-view table > tbody > tr:hover > td, .ai1ec-calendar-view table > tbody > tr:hover > th,
|
230
|
+
.gsc-results-wrapper-visible table > tbody > tr:hover > th {
|
231
|
+
background-color: transparent;
|
232
|
+
}
|
233
|
+
|
234
|
+
/* upcoming events */
|
235
|
+
.ai1ec-agenda-view .ai1ec-date.ai1ec-today, .ai1ec-agenda-widget-view .ai1ec-date.ai1ec-today {
|
236
|
+
background: #eee;
|
237
|
+
}
|
238
|
+
|
239
|
+
/* SECONDARY NAV ADDITIONAL STYLES
|
240
|
+
-------------------------------------------------- */
|
241
|
+
a.list-group-item.active, a.list-group-item.active:hover, a.list-group-item.active:focus {
|
242
|
+
color: #fff;
|
243
|
+
background-color: #AAAAAA;
|
244
|
+
border-color: #AAAAAA;
|
245
|
+
}
|
246
|
+
|
247
|
+
|
248
|
+
/* FOR GOOGLE CS
|
249
|
+
-------------------------------------------------- */
|
250
|
+
/* styles for Google CS */
|
251
|
+
input.gsc-input {
|
252
|
+
color: #555 !important;
|
253
|
+
background-color: #fff !important;
|
254
|
+
border: 1px solid #ccc !important;
|
255
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075) !important;
|
256
|
+
box-shadow: inset 0 1px 1px rgba(0,0,0,.075) !important;
|
257
|
+
-webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s !important;
|
258
|
+
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s !important;
|
259
|
+
}
|
260
|
+
|
261
|
+
input.gsc-search-button {
|
262
|
+
border: 1px solid rgba(0, 0, 0, 0) !important;
|
263
|
+
}
|
264
|
+
|
265
|
+
div.gsc-selected-option-container {
|
266
|
+
color: #333 !important;
|
267
|
+
border: 1px solid transparent !important;
|
268
|
+
background-color: #fff !important;
|
269
|
+
border-color: #ccc !important;
|
270
|
+
}
|
271
|
+
|
272
|
+
div.gsc-option-selector {
|
273
|
+
border-right: 4px solid transparent !important;
|
274
|
+
border-left: 4px solid transparent !important;
|
275
|
+
}
|
276
|
+
|
277
|
+
.gsc-tabHeader {
|
278
|
+
border: 1px solid transparent !important;
|
279
|
+
}
|
280
|
+
|
281
|
+
.gsc-tabHeader.gsc-tabhActive {
|
282
|
+
color: #fff !important;
|
283
|
+
background-color: #AAAAAA !important;
|
284
|
+
/* border-color: #949494 !important; */
|
285
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
286
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
287
|
+
}
|
288
|
+
|
289
|
+
.gsc-tabHeader.gsc-tabhInactive {
|
290
|
+
color: #333 !important;
|
291
|
+
background-color: #fff !important;
|
292
|
+
border-color: #ccc !important;
|
293
|
+
}
|
294
|
+
|
295
|
+
.gsc-tabHeader:hover,
|
296
|
+
.gsc-tabHeader:focus {
|
297
|
+
color: #333 !important;
|
298
|
+
background-color: #ebebeb !important;
|
299
|
+
border-color: #adadad !important;
|
300
|
+
}
|
301
|
+
|
302
|
+
.gsc-tabHeader:active {
|
303
|
+
color: #fff !important;
|
304
|
+
background-color: #AAAAAA !important;
|
305
|
+
border-color: #949494 !important;
|
306
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
307
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
308
|
+
}
|
309
|
+
|
310
|
+
.gsc-tabsArea {
|
311
|
+
border-color: transparent !important;
|
312
|
+
}
|
313
|
+
|
314
|
+
.ginput_container input, .ginput_container textarea, .ginput_container input[type=checkbox], .ginput_container input[type=radio] {
|
315
|
+
color: #555;
|
316
|
+
background-color: #fff;
|
317
|
+
border: 1px solid #000;
|
318
|
+
}
|
319
|
+
|
320
|
+
input.gform_button, #submit {
|
321
|
+
border: 1px solid transparent;
|
322
|
+
color: #fff;
|
323
|
+
background-color: #AAAAAA;
|
324
|
+
border-color: #949494;
|
325
|
+
}
|
326
|
+
|
327
|
+
#submit:hover, input.gform_button:hover {
|
328
|
+
border: 1px solid transparent;
|
329
|
+
color: #fff;
|
330
|
+
background-color: #8f8f8f;
|
331
|
+
border-color: #949494;
|
332
|
+
}
|
333
|
+
|
334
|
+
input.gform_button:focus, #submit:focus {
|
335
|
+
color: #fff;
|
336
|
+
background-color: #8f8f8f;
|
337
|
+
/* border-color: #adadad; */
|
338
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
339
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
340
|
+
}
|
341
|
+
|
342
|
+
/* ADDITIONAL RESPONSIVE STYLES
|
343
|
+
-------------------------------------------------- */
|
344
|
+
@media (max-width: 991px) {
|
345
|
+
div.widgets > hr {
|
346
|
+
border-top: 2px solid #AAAAAA;
|
347
|
+
}
|
348
|
+
}
|
349
|
+
|
350
|
+
/* clear the background image */
|
351
|
+
@media (max-width: 912px) {
|
352
|
+
/* clear the background image */
|
353
|
+
.custom-background {
|
354
|
+
background-color:#fff;
|
355
|
+
}
|
356
|
+
}
|
357
|
+
|
358
|
+
@media (max-width: 767px) {
|
359
|
+
.navbar-default .navbar-nav li:first-child a {
|
360
|
+
border-top: 1px solid #919191;
|
361
|
+
}
|
362
|
+
|
363
|
+
.navbar-default .navbar-nav a {
|
364
|
+
border-bottom: 1px solid #919191;
|
365
|
+
}
|
366
|
+
}
|
367
|
+
|
368
|
+
input.gsc-search-button:hover, input.gsc-search-button:focus {
|
369
|
+
color: #fff !important;
|
370
|
+
}
|
371
|
+
|
372
|
+
input.gsc-search-button:active, input.gsc-search-button.active {
|
373
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
374
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
|
375
|
+
}
|