-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsoundcloudvision.css
106 lines (105 loc) · 1.53 KB
/
soundcloudvision.css
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
#post-448 #content{
display: none;
}
#SCV{
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: #777;
}
#SCVisualizer{
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
}
#SCVuiWrap{
position: absolute;
bottom: 0;
width: 100%;
left: 0;
text-align: center;
}
#SCVui{
display: inline-block;
width: 85%;
max-width: 600px;
}
#urlui{
float: left;
width: 100%;
text-align: center;
}
#urlinput{
width: 85%;
border: 1px #fff solid;
padding: 0;
margin: 0;
font-size: 1.1em;
}
#urlbutton{
border: 1px #fff solid;
width: 14%;
padding: 0;
margin: 0;
font-size: 1.1em;
}
#scplayer{
float: left;
width: 80%;
text-align: center;
margin: 4% 0;
}
#scplayer audio{
width: 100%;
font-size: 1em;
padding: 0.2em;
}
#viz{
width: 18%;
float: left;
margin: 4% 0 4% 2%;
z-index: 999;
}
#viz select{
width: 100%;
margin: 0;
border: none;
box-shadow: none;
transition: none;
border-radius: 0;
font-size: 1em;
background: #fff;
padding: 0.2em;
}
#viz select:focus{
outline: none;
}
#SCVplaylist{
width: 100%;
margin-bottom: 2%;
float: left;
overflow: scroll;
}
#SCVplaylist a{
display: inline-block;
text-align: left;
float: left;
clear: left;
color: #fff;
text-decoration: none;
margin-bottom: 0.25em;
opacity: 0.6;
transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-webkit-transition: opacity .25s ease-in-out;
}
#SCVplaylist a:hover{
opacity: 0.8;
}
#SCVplaylist a.active{
opacity: 1;
}