-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
176 lines (150 loc) · 2.83 KB
/
styles.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
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
html {
height: 100%;
}
body {
background-color: white;
height: 100%;
}
.connectButton {
padding: 12px;
border: none;
font-size: 18px;
border-radius: 25px;
background-color: rgb(249, 76, 87);
color: white;
display: block;
width: 100%;
cursor: pointer;
}
.connectButton:hover {
background-color: rgb(209, 65, 74);
}
.player {
display: flex;
position: fixed;
min-height: 100%;
width: 40%;
position: absolute;
top:0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
flex-direction: column;
text-align: center;
align-content: center;
justify-content: center;
align-items: center;
}
.leftbar{
position: fixed;
height: 100%;
width: 13%;
right: 1%;
}
.devices {
min-width: auto;
max-height: 28%;
position: absolute;
top: 70%;
right: 1%;
}
.queue {
display: flex;
flex-direction: column;
max-height: 67%;
min-width: auto;
}
.queueListContainer {
overflow: auto;
}
.devicesListContainer {
overflow: auto;
}
h1 {
text-align: left;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue",
Helvetica, Arial, "Lucida Grande", sans-serif;
}
h2, h3, h4 {
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue",
Helvetica, Arial, "Lucida Grande", sans-serif;
}
.songName {
margin-top: 1%;
margin-bottom: 0;
}
.completeQueueItem {
display: flex;
flex-direction: row;
}
.nameAndArtistQueueItem {
display: flex;
flex-direction: column;
text-align: center;
align-content: center;
justify-content: center;
align-items: center;
}
.artistName {
margin-bottom: 1%;
margin-top: 0;
}
* {
box-sizing: border-box;
}
ul {
list-style-type: none;
padding: 0;
margin: 0;
}
.deviceslist {
left: auto;
border-radius: 25px;
border: 1px solid #ddd;
margin-top: -1px; /* Prevent double borders */
background-color: #f6f6f6;
padding: 12px;
text-decoration: none;
font-size: 18px;
color: black;
display: block;
position: relative;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue",
Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: bold;
}
.deviceslist:hover {
background-color: #eee;
}
.close {
cursor: pointer;
position: absolute;
top: 50%;
right: 0%;
padding: 12px 16px;
transform: translate(0%, -50%);
}
.close:hover {background: #bbb;}
.loader {
position: fixed;
display: none;
left: 1%;
top: 90%;
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid rgb(209, 65, 74);
width: 120px;
height: 120px;
-webkit-animation: spin 2s linear infinite; /* Safari */
animation: spin 2s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}