~jstys-z/helioviewer.org/client5

« back to all changes in this revision

Viewing changes to resources/css/helioviewer-web.css

  • Committer: Keith Hughitt
  • Date: 2012-06-04 17:27:01 UTC
  • Revision ID: keith.hughitt@nasa.gov-20120604172701-eo2sj3ylxh4bik4l
Added support for reconnecting to MySQL if the connection fails when querying the db to determine which files are new

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
html, body {
2
 
    height: 100%;
3
 
    font-family:
4
 
        "HelveticaNeue-Light",
5
 
        "Helvetica Neue Light",
6
 
        "Helvetica Neue",
7
 
        Helvetica, Arial,
8
 
        "Lucida Grande",
9
 
        sans-serif;
10
 
    font-weight: 200;
11
 
    min-width: 1024px;
12
 
    min-height: 768px;
13
 
    background-color: #000;
14
 
    overflow: none;
15
 
}
16
 
 
17
 
.left {
18
 
    float: left;
19
 
}
20
 
.right {
21
 
    float: right;
22
 
}
23
 
 
24
 
.fa  {
25
 
    font-family: 'untitled-font-1';
26
 
    vertical-align: middle;
27
 
}
28
 
.fa-label {
29
 
    font-weight: 200;
30
 
    vertical-align: middle;
31
 
    padding-left: 0.4em;
32
 
}
33
 
 
34
 
#helioviewer-header {
35
 
    position: absolute;
36
 
    color: rgba(255,255,255,0.9);
37
 
    background-color: rgba(24,24,24,0.8);
38
 
    font-family: 'Helvetica Neue', 'Helvetica', sans-serif;
39
 
    font-weight: 200;
40
 
    z-index: 2;
41
 
    width: 100%;
42
 
    height: 3em;
43
 
    max-height: 3em;
44
 
}
45
 
#helioviewer-header .logo {
46
 
    position: relative;
47
 
    float: left;
48
 
    width: 24.75em;
49
 
    text-align: center;
50
 
    margin: 0.2em 0 0.3em 0;
51
 
}
52
 
#helioviewer-header .logo h1 {
53
 
    font-family: 'Helvetica Neue', 'Helvetica', sans-serif;
54
 
    font-weight: 200;
55
 
    font-size: 2em;
56
 
}
57
 
#helioviewer-header #loading {
58
 
    z-index:999;
59
 
    width: 20em;
60
 
    text-align: center;
61
 
    margin: 0 auto;
62
 
    position: relative;
63
 
    color: rgba(255,255,255,0.8);
64
 
    font-size: 1.2em;
65
 
    font-weight: 200;
66
 
    height: 3em;
67
 
    padding: 0.65em 0;
68
 
    vertical-align: bottom;
69
 
}
70
 
#helioviewer-header .menus {
71
 
    position: absolute;
72
 
    top: 0;
73
 
    right: 0;
74
 
    width: 12.5em;
75
 
    font-size: 2em;
76
 
    margin: 0.05em 0 0 0;
77
 
    text-align: center;
78
 
    height: 100%;
79
 
}
80
 
.menus .ui-icon {
81
 
    vertical-align: text-bottom;
82
 
}
83
 
.menus .ui-icon:hover {
84
 
    color: rgba(255,255,255,1);
85
 
}
86
 
#helioviewer-header a {
87
 
    color: rgba(255,255,255,0.8);
88
 
    text-decoration: none;
89
 
}
90
 
#helioviewer-header a:hover {
91
 
    color: rgba(255,255,255,1);
92
 
    text-decoration: none;
93
 
}
94
 
 
95
 
 
96
 
/* Drawers */
97
 
 
98
 
#helioviewer-drawer-left {
99
 
    position: absolute;
100
 
    top: 3em;
101
 
    left: 0;
102
 
    height: 100%;
103
 
    width: 0; /* opened via JavaScript */
104
 
    background-color: rgba(255,255,255,0.25);
105
 
    color: rgba(255,255,255,0.85);
106
 
    font-family: 'Helvetica Neue', 'Helvetica', sans-serif;
107
 
    font-weight: 200;
108
 
    border-right: 0.45em solid #000;
109
 
    transition: width 200ms;
110
 
    -moz-box-shadow:    1px 0px 1px -1px rgba(255,255,255,0.75);
111
 
    -webkit-box-shadow: 1px 0px 1px -1px rgba(255,255,255,0.75);
112
 
    box-shadow:         1px 0px 1px -1px rgba(255,255,255,0.75);
113
 
    overflow-x: visible;
114
 
    z-index: 1;
115
 
}
116
 
#helioviewer-drawer-right {
117
 
    position: absolute;
118
 
    top: 3em;
119
 
    right: 0;
120
 
    height: 100%;
121
 
    width: 0; /* opened via JavaScript */
122
 
    background-color: rgba(255,255,255,0.25);
123
 
    color: rgba(255,255,255,0.8);
124
 
    font-family: 'Helvetica Neue', 'Helvetica', sans-serif;
125
 
    font-weight: 200;
126
 
    border-left: 0.45em solid #000;
127
 
    transition: width 200ms;
128
 
    -moz-box-shadow:    -1px 0px 1px -1px rgba(255,255,255,0.75);
129
 
    -webkit-box-shadow: -1px 0px 1px -1px rgba(255,255,255,0.75);
130
 
    box-shadow:         -1px 0px 1px -1px rgba(255,255,255,0.75);
131
 
    overflow-x: visible;
132
 
    z-index: 1;
133
 
}
134
 
#helioviewer-drawer-bottom {
135
 
    position: absolute;
136
 
    bottom: 0;
137
 
    clear: both;
138
 
    width: 100%;
139
 
    height: 0; /* opened via JavaScript */
140
 
    background-color: rgba(255,255,255,0.25);
141
 
    color: rgba(255,255,255,0.8);
142
 
    font-family: 'Helvetica Neue', 'Helvetica', sans-serif;
143
 
    font-weight: 200;
144
 
    text-align: center;
145
 
    border-top: 0.45em solid #000;
146
 
    transition: height 200ms;
147
 
    -moz-box-shadow:    0px -1px 1px -1px rgba(255,255,255,0.75);
148
 
    -webkit-box-shadow: 0px -1px 1px -1px rgba(255,255,255,0.75);
149
 
    box-shadow:         0px -1px 1px -1px rgba(255,255,255,0.75);
150
 
    overflow-y: visible;
151
 
    z-index: 1;
152
 
}
153
 
.drawer-contents {
154
 
    position: relative;
155
 
    margin: 0;
156
 
    padding: 0;
157
 
    display: none;
158
 
    height: 100%;
159
 
    overflow-y: scroll;
160
 
    z-index: 1;
161
 
}
162
 
 
163
 
 
164
 
 
165
 
/* Drawer Tabs */
166
 
 
167
 
.drawer-tab {
168
 
    position: relative;
169
 
    cursor: pointer;
170
 
    font-size: 0.75em;
171
 
    color: rgba(255,255,255,0.8);
172
 
    background-color: rgba(0,0,0,1);
173
 
    width: 6em;
174
 
    text-align: center;
175
 
    -o-border-radius: 3px 3px 0 0;
176
 
    -moz-border-radius: 3px 3px 0 0;
177
 
    -webkit-border-radius: 3px 3px 0 0;
178
 
    border-radius: 3px 3px 0 0;
179
 
    padding: 0.15em 0.5em;
180
 
    border-top: 1px solid rgba(255,255,255,0.25);
181
 
    border-left: 1px solid rgba(255,255,255,0.25);
182
 
    border-right: 1px solid rgba(255,255,255,0.25);
183
 
    z-index: 2;
184
 
}
185
 
.drawer-tab:hover {
186
 
    color: rgba(255,255,255,1);
187
 
    box-shadow: 0px -1px 1px 1px rgba(255,255,255,0.25);
188
 
}
189
 
.drawer-tab-left {
190
 
    -webkit-transform: rotate(90deg);
191
 
    transform: rotate(90deg);
192
 
    position: absolute;
193
 
    top: 6em;
194
 
    right: -5em;
195
 
}
196
 
#drawer-viewport-controls-left {
197
 
    position: absolute;
198
 
    top: 0;
199
 
    right: -0.45em;
200
 
    cursor: pointer;
201
 
}
202
 
#drawer-viewport-controls-right {
203
 
    position: absolute;
204
 
    top: 0;
205
 
    left: -2em;
206
 
    cursor: pointer;
207
 
}
208
 
.drawer-tab-right {
209
 
    -webkit-transform: rotate(-90deg);
210
 
    transform: rotate(-90deg);
211
 
    position: absolute;
212
 
    top: 6em;
213
 
    left: -5em;
214
 
}
215
 
.drawer-tab-bottom {
216
 
    position: relative;
217
 
    margin: -2.2em auto 0 auto;
218
 
}
219
 
 
220
 
 
221
 
 
222
 
 
223
 
/* Accordions */
224
 
 
225
 
.accordion {
226
 
    position: relative;
227
 
    color: rgba(255,255,255,0.8);
228
 
    margin-top: 0.5em;
229
 
}
230
 
.accordion .header {
231
 
    color: rgba(255,255,255,0.9);
232
 
    background-color: rgba(0,0,0,0.75);
233
 
}
234
 
.accordion .header:hover {
235
 
    background-color: black;
236
 
}
237
 
.accordion .header h1 {
238
 
    font-size: 1em;
239
 
    display: inline-block;
240
 
    margin: 0.2em 0;
241
 
    font-family: 'Helvetica Neue', 'Helvetica', sans-serif;
242
 
    font-weight: 500;
243
 
    color: rgba(255,255,255,0.9);
244
 
}
245
 
.accordion .header:hover h1 {
246
 
    color: rgba(255,255,255,1);
247
 
}
248
 
.disclosure-triangle {
249
 
    cursor: pointer;
250
 
    color: rgba(255,255,255,0.9);
251
 
    font-size: 0.8em;
252
 
    padding: 0 0.1em 0 0.5em;
253
 
    display: inline-block;
254
 
    text-align: center;
255
 
    width: 1em;
256
 
}
257
 
.accordion .header:hover .disclosure-triangle {
258
 
    color: rgba(255,255,255,1);
259
 
}
260
 
.disclosure-triangle .closed {
261
 
}
262
 
.disclosure-triangle .opened {
263
 
}
264
 
.accordion .content {
265
 
    display: none;
266
 
    background-color: rgba(0,0,0,0.6);
267
 
    padding: 0.75em;
268
 
    font-size: 0.75em;
269
 
}
270
 
.accordion .content .row {
271
 
    position: relative;
272
 
}
273
 
.accordion .content .ui-icon {
274
 
    color: rgba(255,255,255,0.8);
275
 
}
276
 
.accordion .content .blog {
277
 
    margin-bottom: 0.5em;
278
 
}
279
 
.accordion .content a {
280
 
    text-decoration: none;
281
 
    color: rgba(255,255,255,0.8);
282
 
}
283
 
.accordion .content a:hover {
284
 
    text-decoration: none;
285
 
    color: rgba(255,255,255,1);
286
 
}
287
 
.accordion .content .text {
288
 
    padding-left: 2.5em;
289
 
}
290
 
.accordion a.ui-icon:hover {
291
 
    text-decoration: none;
292
 
    border: none;
293
 
}
294
 
.accordion .row {
295
 
    margin-bottom: 0.75em;
296
 
    width: 100%;
297
 
    position: relative;
298
 
}
299
 
.accordion .row:first-child {
300
 
    margin-bottom: 1.5em;
301
 
}
302
 
.accordion .row .label {
303
 
    display: inline-block;
304
 
    width: 5em;
305
 
    text-align: right;
306
 
    padding-right: 0.5em;
307
 
    font-weight: 500;
308
 
    font-size: 1.2em;
309
 
    float: left;
310
 
}
311
 
.accordion .row .field {
312
 
    display: inline-block;
313
 
    text-align: left;
314
 
}
315
 
.accordion input[type=text] {
316
 
    background-color: rgba(255,255,255,0.2);
317
 
    border: 1px solid rgba(255,255,255,0.6);
318
 
    -webkit-border-radius: 0.2em;
319
 
    -moz-border-radius: 0.2em;
320
 
    border-radius: 0.2em;
321
 
    color: rgba(255,255,255,1);
322
 
    font-family: 'Courier New', Courier, monospace;
323
 
    font-weight: 200;
324
 
    padding: 0.3em 0.5em;
325
 
    width: 6em;
326
 
    text-align: center;
327
 
}
328
 
.accordion select {
329
 
    background-color: rgba(255,255,255,0.2);
330
 
    border: 1px solid rgba(255,255,255,0.6);
331
 
    -moz-border-radius: 0.2em;
332
 
    -webkit-border-radius: 0.2em;
333
 
    border-radius: 0.2em;
334
 
    color: rgba(255,255,255,1);
335
 
    font-family: 'Courier New', Courier, monospace;
336
 
    font-weight: 200;
337
 
    padding: 0.3em 0.5em;
338
 
    vertical-align: middle;
339
 
}
340
 
.row .field .suffix {
341
 
    display: inline-block;
342
 
    margin-left: 0.2em;
343
 
}
344
 
.row .ui-icon.ui-datepicker-trigger {
345
 
    position: relative;
346
 
    display: inline-block;
347
 
    font-size: 1.5em;
348
 
    vertical-align: middle;
349
 
    float: right;
350
 
    margin: 0;
351
 
    padding: 0;
352
 
}
353
 
.row .ui-icon:hover {
354
 
    color: rgba(255,255,255,1);
355
 
    cursor: pointer;
356
 
}
357
 
 
358
 
.inline {
359
 
    display: inline-block;
360
 
}
361
 
 
362
 
.contextual-help {
363
 
    color: rgba(255,255,255,0.5);
364
 
    font-size: 1em;
365
 
    padding: 0.33em;
366
 
}
367
 
.contextual-help:hover {
368
 
    color: rgba(255,255,255,1);
369
 
}
370
 
 
371
 
 
372
 
 
373
 
 
374
 
 
375
1
/**
376
2
 * Helioviewer.org Custom Styles
377
3
*/
378
4
 
379
5
/* HTML elements */
380
 
 
 
6
html, body {
 
7
    background-image: url('../../resources/images/backgrounds/gradient_v5-optimized.png');
 
8
    background-color: #20242F;
 
9
    background-repeat: repeat-x;
 
10
    /*background-size: 40px 100%;
 
11
    -webkit-background-size: 40px 100%;*/
 
12
}
381
13
#col2 input, #col2 select {background-color:#F4F4F4;}
382
 
#left-col-header, #right-col-header {height: 50px; margin-top: -12px;}
 
14
#left-col-header, #right-col-header {height: 50px; margin-top: -24px;}
383
15
 
384
16
/* Viewport */
385
17
#helioviewer-viewport-container-inner {
386
 
    position: absolute;
387
 
    top:0;
388
 
    left: 0;
 
18
    position: relative;
389
19
    display: block;
390
 
    width:100%;
391
 
    height:100%;
 
20
    top:3%;
 
21
    width:97%;
 
22
    height:94%;
 
23
    margin-left:auto;
 
24
    margin-right: auto;
 
25
    border: 1px solid #262424;
392
26
}
393
27
#helioviewer-viewport-container-outer {
 
28
    height: 520px;
 
29
    border:1px solid black;
 
30
    border-radius: 25px;
 
31
    -moz-border-radius: 25px;
 
32
    -webkit-border-radius: 25px;
 
33
}
 
34
 
 
35
#helioviewer-viewport-container-shadow {
394
36
    position: absolute;
395
 
    top:0;
396
 
    left: 0;
397
 
    display: block;
398
 
    width:100%;
399
 
    height:100%;
 
37
    top: 24px;
 
38
    left: 284px;
 
39
    display: none;
 
40
    border-radius: 25px;
 
41
    -moz-border-radius: 25px;
 
42
    -webkit-border-radius: 25px;
 
43
    z-index: -1;
400
44
}
401
45
 
 
46
/* CSS effects */
 
47
.shadow {
 
48
box-shadow: 0 0 5px rgba(0, 0, 0, 1);
 
49
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 1); 
 
50
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 1);
 
51
}
402
52
.glow {
403
 
    -moz-box-shadow:    0px 0px 1px 1px yellow;
404
 
    -webkit-box-shadow: 0px 0px 1px 1px yellow;
405
 
    box-shadow:         0px 0px 1px 1px yellow;
 
53
    box-shadow: 0 0 5px rgba(255, 255, 255, 1);
 
54
    -webkit-box-shadow: 0 0 5px rgba(255, 255, 255, 1); 
 
55
    -moz-box-shadow: 0 0 5px rgba(255, 255, 255, 1);
406
56
}
407
57
 
408
58
/* Logo */
409
59
#helioviewer-logo-main {
410
 
    margin-top:12px;
 
60
    margin-top:24px;
411
61
    margin-left: 9px;
412
62
}
413
63
 
 
64
/* Loading Indicator */
 
65
#loading {
 
66
    position: absolute;
 
67
    right: 7px;
 
68
    padding: 7px;
 
69
    font-size: 13px;
 
70
    color: #606364;
 
71
}
414
72
 
415
73
/* Opacity Slider */
416
74
.opacity-slider-track {
424
82
 
425
83
.opacity-slider-track > .ui-slider-handle {
426
84
    background-color: #565656;
 
85
    border-radius: 3px;
427
86
    -moz-border-radius: 3px;
428
87
    -webkit-border-radius: 3px;
429
 
    border-radius: 3px;
430
88
    border: 1px solid black;
431
89
    cursor: pointer;
432
90
    height:19px;
433
91
    width: 10px;
434
 
    top:-6px;
 
92
    top:-6px;   
435
93
}
436
94
 
437
95
/* Message Console */
467
125
.section-header {
468
126
    font-weight: bold;
469
127
}
470
 
.section-header a {
471
 
    text-decoration: none;
472
 
    color: inherit;
473
 
}
474
 
.section-header a:hover {
475
 
    color: #d18f61;
476
 
}
477
128
 
478
129
/** Meta links **/
479
130
#footer-container-outer {
480
 
    position: relative;
 
131
    position: relative;    
481
132
}
482
133
 
483
134
#footer-container-inner {
 
135
    background-image: url(../../resources/images/backgrounds/ui-bg_gloss-wave_20_111111_500x100_transparent_15.png);
484
136
    position: absolute;
485
137
    width: 100%;
486
138
    height: 18px;
491
143
 
492
144
#footer-links {
493
145
    text-align: center;
 
146
    width: 25%;
 
147
    min-width: 654px;
494
148
    margin-left: auto;
495
 
    margin-right: auto;
496
 
    text-overflow: ellipsis;
497
 
    white-space: nowrap;
498
 
    overflow: hidden;
 
149
    margin-right: auto;        
499
150
}
500
151
 
501
152
#footer-links > a {
502
153
    vertical-align: middle;
503
154
    color: #DCDCDC;
504
155
    font-size: 11px;
505
 
    margin: 0 10px;
 
156
    margin-right: 20px;
506
157
}
507
158
 
508
159
#footer-links > a:hover {
539
190
    border-right: 0px;
540
191
    font-size: 11px;
541
192
    height: 15px;
 
193
    border-bottom-left-radius: 20px;
542
194
    -moz-border-radius-bottomleft: 20px;
543
195
    -webkit-border-bottom-left-radius: 20px;
544
 
    border-bottom-left-radius: 20px;
 
196
}
 
197
 
 
198
#fullscreen-btn {
 
199
    position: absolute;
 
200
    background-color: #2A2A2A;
 
201
    border-bottom: 1px solid #262424;
 
202
    border-left  : 1px solid #2A2A2A;
 
203
    padding-top: 1px;
 
204
    top:0px;
 
205
    right: 0px;
 
206
    cursor: pointer;
545
207
}
546
208
 
547
209
/* Blog entries */
548
210
#social-panel {
549
211
    height: 100%;
 
212
    min-height: 150px;
550
213
    font-size: 11px;
551
214
    padding: 4px 2px 6px;
552
215
    margin: 0 5px;
553
216
}
554
 
#social-panel.ui-widget-content {
555
 
    background: none;
556
 
    border: none;
557
 
}
 
217
 
558
218
#social-panel .blog-entry {
559
219
    margin: 4px 4px 14px 4px;
560
220
}
565
225
    text-decoration: none;
566
226
}
567
227
#social-panel .blog-entry a:hover {
568
 
    color: yellow;
 
228
    color: #D18F16;
569
229
}
570
230
 
571
231
#social-panel .article-date {
581
241
}
582
242
 
583
243
#more-articles a:hover {
584
 
    color: yellow;
 
244
    color: #D18F16;
585
245
}
586
246
 
587
247
/* Image Area Select */
588
248
#image-area-select-buttons {
 
249
    position: absolute;
 
250
    top:0px;
 
251
    right:0px;
 
252
    width: 150px;
 
253
    background: #2A2A2A;
 
254
    font-size: 13px;
 
255
    padding: 8px;
 
256
    -moz-border-radius: 0 0 0px 5px;
 
257
    -webkit-border-radius: 0 0 0px 5px;
 
258
    color: white;
 
259
    z-index: 10;
589
260
    display: none;
590
 
    position: absolute;
591
 
    width: 100%;
592
 
    height: 3em;
593
 
    background: black;
594
 
    padding: 0;
595
 
    margin: 0;
596
 
    color: yellow;
597
 
    text-align: center;
598
 
    z-index: 9999;
599
261
}
600
262
 
601
263
#image-area-select-container {
607
269
    display: none;
608
270
}
609
271
 
610
 
#image-area-select-buttons .text-btn {
611
 
    color: rgba(255,255,255,0.8);
612
 
    background-color: rgba(255,255,255,0.00);
613
 
    border: 1px solid rgba(255,255,255,0.8);
614
 
    -o-border-radius: 1em;
615
 
    -moz-border-radius: 1em;
616
 
    -webkit-border-radius: 1em;
617
 
    border-radius: 1em;
618
 
    padding: 0.35em 0.8em 0.4em 0.4em;
619
 
    font-weight: 400;
620
 
    text-align: center;
621
 
    margin: 0.5em 0.4em;
622
 
}
623
 
#done-selecting-image.text-btn {
624
 
    border-color: #00ff00;
625
 
    color: #00ff00;
626
 
}
627
 
#cancel-selecting-image.text-btn {
628
 
    border-color: red;
629
 
    color: red;
 
272
#image-area-select-buttons .ui-icon {
 
273
    float: left;
630
274
}
631
275
 
632
276
/** Settings dialog */
633
 
 
 
277
    
634
278
#settings-dialog {
635
279
    display:none;
636
280
    margin: 15px 15px 0 15px;
648
292
 
649
293
#helioviewer-settings legend {
650
294
    margin-left: -10px;
651
 
    font-weight: 500;
 
295
    font-style: italic;
652
296
    color: white;
653
297
}
654
298
 
664
308
    right: 5px;
665
309
    color: white;
666
310
}
667
 
 
668
 
.fa:hover {
669
 
    color: yellow;
670
 
}
671
 
 
672
 
.text-button {
673
 
    color: rgba(255,255,255,0.8);
674
 
    background-color: transparent;
675
 
    border: 1px solid rgba(255,255,255,0);
676
 
    -moz-border-radius: 1em;
677
 
    -webkit-border-radius: 1em;
678
 
    border-radius: 1em;
679
 
    padding: 0.1em 0.4em;
680
 
    font-weight: 200;
681
 
}
682
 
.text-button:hover {
683
 
    color: white;
684
 
    background-color: transparent;
685
 
    border: 1px solid rgba(255,255,255,1);
686
 
}
687
 
.text-button a:hover {
688
 
    text-decoration: none;
689
 
    background-color: transparent;
690
 
}
691
 
.text-button:active {
692
 
    color: yellow;
693
 
    border: 1px solid yellow;
694
 
}
695
 
.text-button a:active {
696
 
    text-decoration: none;
697
 
    color: yellow;
698
 
}
699
 
.drawer-contents .row .buttons .text-button.inactive,
700
 
.drawer-contents .row .buttons .text-button.inactive:hover,
701
 
.drawer-contents .row .buttons .text-button.inactive:active {
702
 
    border: 1px solid rgba(255,255,255,0.25);
703
 
    color: rgba(255,255,255,0.25);;
704
 
}
705
 
 
706
 
 
707
 
#user-video-gallery.ui-widget-content {
708
 
    background: none;
709
 
    border: none;
710
 
}
711
 
 
712
 
#helioviewer-header #link-button:hover {
713
 
    color: blue;
714
 
}
715
 
 
716
 
#helioviewer-header #twitter-button:hover {
717
 
    color: #00aced;  /* twitter logo blue */
718
 
}
719
 
#helioviewer-header #facebook-button:hover {
720
 
    color: #3b5998;  /* facebook logo blue */
721
 
}
722
 
#helioviewer-header #pinterest-button:hover {
723
 
    color: #cb2027;  /* pinterest logo red */
724
 
}
725
 
#helioviewer-header #youtube-button:hover {
726
 
    color: #bb0000;  /* youtube logo red */
727
 
}
728
 
 
729
 
#helioviewer-header .social-button:hover {
730
 
    background-color: white;
731
 
    -o-border-radius: 0.2em;
732
 
    -moz-border-radius: 0.2em;
733
 
    -webkit-border-radius: 0.2em;
734
 
    border-radius: 0.2em;
735
 
    border-color: black;
736
 
    cursor: pointer;
737
 
}
738
 
 
739
 
.drawer-contents .top-shadow{
740
 
    height: 0.75em;
741
 
    position: fixed;
742
 
    top: 3em;
743
 
    width: 25em;
744
 
    z-index: 3;
745
 
    background: -o-linear-gradient(rgba(0,0,0, 0.75), rgba(0,0,0, 0));
746
 
    background: -moz-linear-gradient(rgba(0,0,0, 0.75), rgba(0,0,0, 0));
747
 
    background: -webkit-linear-gradient(rgba(0,0,0, 0.75), rgba(0,0,0, 0));
748
 
    background: linear-gradient(rgba(0,0,0, 0.75), rgba(0,0,0, 0));
749
 
}
750
 
.drawer-contents .bottom-shadow {
751
 
    height: 0.75em;
752
 
    position: fixed;
753
 
    bottom: 0.4em;
754
 
    width: 25em;
755
 
    z-index: 3;
756
 
    background: -o-linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.75));
757
 
    background: -moz-linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.75));
758
 
    background: -webkit-linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.75));
759
 
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.75));
760
 
}
 
 
b'\\ No newline at end of file'