1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
|
/* line 5, ../../../../../../../usr/lib/ruby/gems/2.2.0/gems/compass-1.0.3/vendor/bundle/ruby/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font: inherit;
font-size: 100%;
vertical-align: baseline;
}
/* line 22, ../../../../../../../usr/lib/ruby/gems/2.2.0/gems/compass-1.0.3/vendor/bundle/ruby/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html {
line-height: 1;
}
/* line 24, ../../../../../../../usr/lib/ruby/gems/2.2.0/gems/compass-1.0.3/vendor/bundle/ruby/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
ol, ul {
list-style: none;
}
/* line 26, ../../../../../../../usr/lib/ruby/gems/2.2.0/gems/compass-1.0.3/vendor/bundle/ruby/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
table {
border-collapse: collapse;
border-spacing: 0;
}
/* line 28, ../../../../../../../usr/lib/ruby/gems/2.2.0/gems/compass-1.0.3/vendor/bundle/ruby/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
caption, th, td {
text-align: left;
font-weight: normal;
vertical-align: middle;
}
/* line 30, ../../../../../../../usr/lib/ruby/gems/2.2.0/gems/compass-1.0.3/vendor/bundle/ruby/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q, blockquote {
quotes: none;
}
/* line 103, ../../../../../../../usr/lib/ruby/gems/2.2.0/gems/compass-1.0.3/vendor/bundle/ruby/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q:before, q:after, blockquote:before, blockquote:after {
content: "";
content: none;
}
/* line 32, ../../../../../../../usr/lib/ruby/gems/2.2.0/gems/compass-1.0.3/vendor/bundle/ruby/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
a img {
border: none;
}
/* line 116, ../../../../../../../usr/lib/ruby/gems/2.2.0/gems/compass-1.0.3/vendor/bundle/ruby/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
display: block;
}
/* line 8, ../src/profile.sass */
body {
background: #888;
overflow-y: hidden;
overflow-x: hidden;
font-family: trebuchet ms, sans-serif;
}
/* line 14, ../src/profile.sass */
#logo {
position: absolute;
z-index: 20;
top: 15px;
left: 20px;
}
/* line 19, ../src/profile.sass */
#logo a {
display: inline-block;
}
/* line 21, ../src/profile.sass */
#logo a img {
padding-top: 5px;
display: inline-block;
}
/* line 24, ../src/profile.sass */
#logo h1 {
position: relative;
top: -10px;
left: 10px;
font-size: 34px;
font-weight: normal;
font-style: italic;
font-family: georgia, garamond, serif;
color: #f8b;
display: inline-block;
}
/* line 34, ../src/profile.sass */
#logo h2 {
position: relative;
display: inline-block;
font-size: 12px;
color: #fff;
max-width: 250px;
left: 10px;
top: -6px;
padding-right: 20px;
}
/* line 43, ../src/profile.sass */
#logobg {
position: absolute;
top: 10px;
left: 0;
width: 100%;
height: 64px;
background-color: #000;
opacity: 0.8;
z-index: 19;
}
/* line 52, ../src/profile.sass */
#likebutton {
display: inline-block;
display: none;
z-index: -1;
min-width: 90px;
}
/* line 57, ../src/profile.sass */
#likebutton a {
color: #33f;
}
/* line 59, ../src/profile.sass */
#flower {
position: absolute;
top: 0;
right: 10%;
z-index: 20;
pointer-events: none;
display: none;
}
/* line 66, ../src/profile.sass */
#contact {
position: absolute;
left: 0;
display: none;
}
/* line 70, ../src/profile.sass */
#contact #avatar, #contact .avatar {
display: none;
width: 100%;
}
/* line 74, ../src/profile.sass */
#contact .avatar {
display: block;
}
/* line 77, ../src/profile.sass */
#contact #bio p {
color: #ddd;
background-color: #000;
padding: 10px 5px;
text-align: center;
opacity: 0.7;
}
/* line 83, ../src/profile.sass */
#contact #bio a {
color: #ebf;
display: block;
}
/* line 86, ../src/profile.sass */
#contact #bio img {
width: 100%;
}
/* line 89, ../src/profile.sass */
#sitez {
position: absolute;
top: 30px;
right: 20px;
text-align: right;
z-index: 20;
}
/* line 95, ../src/profile.sass */
#sitez div {
color: #ddd;
cursor: pointer;
display: inline-block;
padding: 4px 8px 4px 8px;
float: left;
}
/* line 101, ../src/profile.sass */
#sitez div a {
color: #bbc;
}
/* line 103, ../src/profile.sass */
#sitez div#settings-hook {
display: none;
z-index: 82;
}
/* line 104, ../src/profile.sass */
#sitez div#settings-hook:hover {
-moz-border-radius: 10px 10px 3px 3px;
-webkit-border-radius: 10px 10px 3px 3px;
-o-border-radius: 10px 10px 3px 3px;
border-radius: 10px 10px 3px 3px;
background-color: #333;
color: #fff;
}
/* line 108, ../src/profile.sass */
#sitez div#settings-hook.opened {
-moz-border-radius: 10px 10px 3px 3px;
-webkit-border-radius: 10px 10px 3px 3px;
-o-border-radius: 10px 10px 3px 3px;
border-radius: 10px 10px 3px 3px;
background-color: #333;
color: #fff;
}
/* line 114, ../src/profile.sass */
#fullscreen-warning {
position: fixed;
top: 50%;
left: 50%;
width: 600px;
margin-left: -300px;
margin-top: -20px;
text-align: center;
font-size: 24px;
padding: 10px;
background-color: rgba(0, 0, 0, 0.5);
color: white;
z-index: 100;
display: none;
}
/* line 128, ../src/profile.sass */
#settings-container {
position: fixed;
top: 53px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
-o-border-radius: 10px;
border-radius: 10px;
right: 20px;
z-index: 80;
width: 500px;
background-color: #222;
color: #657b83;
display: none;
box-shadow: 0 5px 10px #000;
}
/* line 139, ../src/profile.sass */
#settings-container .close {
margin: 10px 10px 0 0;
float: right;
color: #ded8c5;
width: 20px;
height: 14px;
font-size: 14px;
padding: 3px 0;
text-align: center;
vertical-align: middle;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
-o-border-radius: 10px;
border-radius: 10px;
background-color: #000b16;
}
/* line 151, ../src/profile.sass */
#settings-container .close:hover {
color: #fff;
cursor: pointer;
}
/* line 154, ../src/profile.sass */
#settings-container #rooms-loading {
margin: 10px;
}
/* line 156, ../src/profile.sass */
#settings-container h5 {
font-size: 16px;
color: #93a1a1;
display: block;
padding: 10px;
background-color: #333;
-moz-border-radius: 10px 10px 0 0;
-webkit-border-radius: 10px 10px 0 0;
-o-border-radius: 10px 10px 0 0;
border-radius: 10px 10px 0 0;
}
/* line 163, ../src/profile.sass */
#settings-container p {
padding: 10px 10px 10px 10px;
font-size: 14px;
line-height: 18px;
color: #b3c1c1;
background-color: #1b1b1f;
}
/* line 169, ../src/profile.sass */
#settings-container label {
margin: 2px 0 0 10px;
font-size: 14px;
color: #657b83;
width: 150px;
text-align: right;
padding-right: 5px;
display: inline-block;
}
/* line 177, ../src/profile.sass */
#settings-container span {
margin: 2px 10px 0 0;
color: #839496;
font-size: 14px;
}
/* line 181, ../src/profile.sass */
#settings-container input {
margin: 2px 10px 0 0;
width: 100px;
}
/* line 184, ../src/profile.sass */
#settings-container #profile-avatar, #settings-container #profile-bg, #settings-container #profile-email {
width: 300px;
}
/* line 186, ../src/profile.sass */
#settings-container #profile-settings-save {
font-size: 14px;
}
/* line 188, ../src/profile.sass */
#settings-container textarea {
width: 300px;
height: 150px;
}
/* line 191, ../src/profile.sass */
#settings-container .shim {
width: 1px;
height: 10px;
}
/* line 194, ../src/profile.sass */
#settings-container ul {
text-decoration: none;
cursor: pointer;
}
/* line 197, ../src/profile.sass */
#settings-container ul li {
list-style-type: none;
padding: 10px;
cursor: pointer;
border-top: 1px solid #000;
background-color: transparent;
text-decoration: none;
font-size: 14px;
color: #83a1a1;
}
/* line 206, ../src/profile.sass */
#settings-container ul li:hover {
color: #fdf6e3;
}
/* line 208, ../src/profile.sass */
#settings-container ul a li {
color: #83a1a1;
text-decoration: none;
}
/* line 211, ../src/profile.sass */
#settings-container ul a {
color: #83a1a1;
text-decoration: none;
}
/* line 214, ../src/profile.sass */
#msg {
z-index: 100;
position: fixed;
top: 10px;
right: 10px;
padding: 5px;
width: 250px;
max-height: 80%;
font-size: 12px;
background-color: #eeeeee;
overflow-y: scroll;
overflow-x: hidden;
color: #333;
}
/* line 227, ../src/profile.sass */
#msg strong {
color: #859900;
}
/* line 229, ../src/profile.sass */
#msg em {
color: #dc322f;
}
/* line 231, ../src/profile.sass */
#msg b {
color: #002b36;
}
/* line 233, ../src/profile.sass */
#player {
padding: 10px;
position: absolute;
background: #000;
}
/* line 237, ../src/profile.sass */
#player #projector {
display: block;
position: fixed;
background-color: #000;
}
/* line 241, ../src/profile.sass */
#player #projector #screen {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 19;
}
/* line 248, ../src/profile.sass */
#player #projector #screen #soundcloud, #player #projector #screen #audio {
position: absolute;
top: 0;
right: 0;
background-color: #000;
z-index: 21;
}
/* line 254, ../src/profile.sass */
#player #projector #screen #soundcloud-dl, #player #projector #screen #audio-dl {
position: absolute;
top: 81px;
right: 0;
width: 81px;
padding: 5px 0 5px 0;
font-size: 13px;
text-align: center;
background-color: #000;
z-index: 20;
}
/* line 263, ../src/profile.sass */
#player #projector #screen #soundcloud-dl *, #player #projector #screen #audio-dl * {
color: #839496;
}
/* line 266, ../src/profile.sass */
#player #projector #screen #soundcloud-img, #player #projector #screen #audio-img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 20;
}
/* line 273, ../src/profile.sass */
#player #projector #screen #soundcloud-img img, #player #projector #screen #audio-img img {
max-width: 100%;
min-height: 100%;
max-height: 100%;
}
/* line 277, ../src/profile.sass */
#player #projector #ytscreen {
z-index: 19;
position: absolute;
top: 0;
left: 0;
}
/* line 282, ../src/profile.sass */
#player #projector #video-title {
position: absolute;
bottom: 0;
left: 10px;
color: #fff;
z-index: 20;
}
/* line 288, ../src/profile.sass */
#player #projector #video-title.fullscreen {
position: fixed;
bottom: 90px;
left: auto;
right: 30px;
font-size: 24px;
}
/* line 294, ../src/profile.sass */
#player #projector #projimg {
width: 100%;
height: 100%;
}
/* line 297, ../src/profile.sass */
#player nav#controls {
z-index: 40;
position: absolute;
display: none;
}
/* line 301, ../src/profile.sass */
#player nav#controls #video-link {
color: #839496;
}
/* line 303, ../src/profile.sass */
#player nav#controls #scan.blinkOn {
background-color: #fff;
color: #000;
}
/* line 306, ../src/profile.sass */
#player nav#controls #scan.blinkOff {
background-color: #000;
color: #fff;
}
/* line 309, ../src/profile.sass */
#player nav#controls #like {
color: #e4b;
}
/* line 311, ../src/profile.sass */
#player nav#controls #like.liked {
color: #44f;
}
/* line 313, ../src/profile.sass */
#playlistbg {
position: absolute;
background-color: #000;
opacity: 0.5;
}
/* line 317, ../src/profile.sass */
#playlist {
position: absolute;
z-index: 90;
width: 100%;
}
/* line 321, ../src/profile.sass */
#playlist ul#queue {
width: 100%;
border-top: 1px solid #888;
border-left: 1px solid #888;
border-bottom: 1px solid #888;
-webkit-padding-start: 0;
-webkit-margin-before: 0;
overflow-y: scroll;
overflow-x: hidden;
z-index: 90;
}
/* line 331, ../src/profile.sass */
#playlist ul#queue li {
padding: 5px;
display: block;
cursor: pointer;
border-bottom: 1px solid #333;
}
/* line 336, ../src/profile.sass */
#playlist ul#queue li span.title {
color: #ddd;
display: block;
padding: 5px;
font-size: 15px;
z-index: 1;
}
/* line 342, ../src/profile.sass */
#playlist ul#queue li span.title:hover {
color: #fff;
}
/* line 344, ../src/profile.sass */
#playlist ul#queue li a.user {
float: right;
font-size: 14px;
padding: 0 5px;
color: #d33682;
padding: 5px;
z-index: 2;
text-decoration: none;
}
/* line 352, ../src/profile.sass */
#playlist ul#queue li span.like {
float: right;
font-size: 14px;
color: #657b83;
padding: 5px;
z-index: 3;
}
/* line 358, ../src/profile.sass */
#playlist ul#queue li span.like.liked {
color: #c357a3;
}
/* line 360, ../src/profile.sass */
#playlist ul#queue li span.score {
float: right;
font-size: 14px;
color: #bbb;
padding: 5px 10px 5px 5px;
}
/* line 365, ../src/profile.sass */
#playlist ul#queue li.playing {
background-color: #222;
}
/* line 367, ../src/profile.sass */
#playlist ul#queue li.playing span.title {
color: #fff;
}
/* line 369, ../src/profile.sass */
#playlist ul#queue li#queueLess {
color: #fff;
text-align: center;
border: 0;
border-bottom: 1px solid #333;
font-size: 18px;
padding: 10px 0;
cursor: pointer;
}
/* line 372, ../src/profile.sass */
#playlist ul#queue li#queueLess:hover {
background-color: #666;
color: #fff;
}
/* line 380, ../src/profile.sass */
#playlist ul#queue li#queueMore {
color: #fff;
text-align: center;
border: 0;
font-size: 33px;
padding: 20px 20px 20px 20px;
cursor: pointer;
}
/* line 383, ../src/profile.sass */
#playlist ul#queue li#queueMore:hover {
background-color: #666;
color: #fff;
}
/* line 390, ../src/profile.sass */
#playlist ul#queue li#queueDone {
color: #ddd;
text-align: center;
border: 0;
font-size: 33px;
padding: 80px 20px 200px 20px;
}
/* line 396, ../src/profile.sass */
#playlist ul#queue li#queueLoading {
text-align: center;
color: #fff;
font-size: 24px;
padding: 80px;
}
/* line 401, ../src/profile.sass */
#playlist ol {
-webkit-padding-start: 0;
-webkit-margin-before: 0;
-webkit-margin-after: 0;
display: block;
position: relative;
top: 1px;
}
/* line 408, ../src/profile.sass */
#playlist ol li {
padding: 5px 8px 8px 8px;
margin: 0 0 0 10px;
list-style-type: none;
border-top: 1px solid #000;
border-right: 1px solid #000;
border-left: 1px solid #000;
border-bottom: 1px solid #888;
display: inline-block;
background-color: #333;
color: #bbb;
cursor: pointer;
opacity: 0.7;
z-index: 89;
}
/* line 422, ../src/profile.sass */
#playlist ol li.mode {
position: relative;
padding: 8px 8px 8px 8px;
border-color: #888;
border-bottom: 1px solid #111;
background-color: #111;
color: #fff;
z-index: 91;
}
/* line 430, ../src/profile.sass */
nav {
z-index: 10;
margin: 0 auto;
}
/* line 433, ../src/profile.sass */
nav button, nav #video-link {
background-color: #333;
color: #ddd;
border: 0;
font-size: 14px;
min-width: 40px;
min-height: 20px;
padding: 5px 5px;
position: relative;
top: -1px;
}
/* line 436, ../src/profile.sass */
nav button:hover, nav #video-link:hover {
background-color: #666;
color: #fff;
}
/* line 446, ../src/profile.sass */
nav #video-link {
padding: 6px 5px 5px 5px;
}
/* line 448, ../src/profile.sass */
#msg {
display: none;
}
/* line 450, ../src/profile.sass */
#gif-container {
position: absolute;
left: 0;
width: 100%;
padding-left: 10%;
display: block;
padding-bottom: 200px;
}
/* line 457, ../src/profile.sass */
#gif-container #gifs {
clear: both;
display: block;
text-align: center;
top: 0;
max-width: 80%;
margin: 0 0 200px 0;
box-shadow: 0 5px 10px #000;
background-color: #fff;
}
/* line 466, ../src/profile.sass */
#gif-container #gifs div {
padding: 10px;
display: inline-block;
}
/* line 469, ../src/profile.sass */
#gif-container #gifs div img {
max-width: 350px;
max-height: 400px;
}
/* line 472, ../src/profile.sass */
#bg {
position: fixed;
top: 0;
left: 0;
opacity: 1;
z-index: -3;
width: 100%;
height: 100%;
display: none;
}
/* line 481, ../src/profile.sass */
#bg img {
width: 100%;
height: 100%;
}
/* line 485, ../src/profile.sass */
.arrow-play {
width: 0;
height: 0;
border-top: 4.5px solid transparent;
border-left: 9.5px solid white;
border-bottom: 4.5px solid transparent;
display: inline-block;
}
/* line 492, ../src/profile.sass */
.arrow-pause {
width: 0;
height: 0;
border-top: 5px solid white;
border-right: 2.5px solid white;
border-bottom: 4px solid white;
border-left: 0;
display: inline-block;
}
/* line 500, ../src/profile.sass */
.arrow-prev {
width: 0;
height: 0;
border-top: 4px solid transparent;
border-right: 4px solid white;
border-bottom: 4px solid transparent;
display: inline-block;
}
/* line 507, ../src/profile.sass */
.arrow-next {
width: 0;
height: 0;
border-top: 4px solid transparent;
border-left: 4px solid white;
border-bottom: 4px solid transparent;
display: inline-block;
}
|