-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (54 loc) · 1.24 KB
/
Copy pathstyle.css
File metadata and controls
65 lines (54 loc) · 1.24 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
@import "https://cdnjs.cloudflare.com/ajax/libs/material-design-icons/3.0.1/iconfont/material-icons.min.css";
@import "https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css";
:root {
--primary: #7159c1
}
body{
height: 100vh;
background-color: #efefef;
display: flex;
align-items: center;
justify-content: center;
}
#player {
background-color: #fff;
width: 90%;
max-width: 375px;
box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.12),
0px 3px 1px 2px rgba(0, 0, 0, 0.12),
0px 1px 5px 0px rgba(0, 0, 0, 0.2);
}
.card {
box-shadow: none;
margin: 0;
}
h4 {
color: var(--primary);
font-size: 20px;
font-weight: bold;
margin: 0;
padding: 12px;
display: flex;
align-items: center;
justify-content: center;
}
.card-image {
background: url("https://placehold.it/500") no-repeat center center / cover;
height: 200px;
}
#play-button {
background-color: var(--primary);
}
#volume-button {
color: var(--primary);
transform: translateY(2px);
}
input[type=range]::-webkit-slider-thumb {
background-color: var(--primary);
}
input[type=range]::-moz-range-thumb {
background-color: var(--primary);
}
input[type=range]::-ms-thumb {
background-color: var(--primary);
}