-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyles.css
More file actions
76 lines (62 loc) · 1.06 KB
/
styles.css
File metadata and controls
76 lines (62 loc) · 1.06 KB
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
canvas {
width: 100%;
height: 200px;
}
#playlist .empty, #player {
text-align: center;
}
#playlist.over {
background-color: rgb(43, 166, 203);
}
#playlist .track.over {
border-top: 1px dashed black;
}
#timer {
float: left;
margin-top: -18px;
width: 100%;
}
.meter {
width: 0;
}
ul.button-group li.controls {
text-align: left;
padding-left: 2em;
}
.active {
font-weight: bold;
}
li.track:hover {
background-color: white;
}
li.track:hover .options {
visibility: visible;
}
.stopafter, li.stopafter:hover {
background-color: #FFFF99;
}
.track .options {
width: 150px;
float: right;
visibility: hidden;
text-align: right;
}
.trackname:hover {
cursor: pointer;
color: rgb(43, 166, 203);
}
footer {
background-color: #3F3F3F;
border: 1px solid black;
border-width: 1px 0;
color: white;
padding: 2em 0;
margin-top: 2em;
}
[draggable] {
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
user-select: none;
cursor: move;
}