-
Notifications
You must be signed in to change notification settings - Fork 3
/
theme.scss
50 lines (41 loc) · 871 Bytes
/
theme.scss
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
$button-colour: #f77007;
$button-hover-colour: #d2610a;
$background: #e0e0e0;
.ac-container {
text-align: center;
display: inline-block;
float: left;
border: 1px solid $background;
}
.ac-play-container {
background-color: $background;
button:focus {
outline: none;
}
.ac-play {
font-family: "FontAwesome";
margin-top: 15%;
border-radius: 50%;
background-color: $button-colour;
border: none;
color: #ffffff;
font-size: 40px;
padding-left: 15px;
transition: .25s ease background-color;
}
.ac-play:before {
content: "\f04b";
}
.ac-play:hover {
background-color: $button-hover-colour;
cursor: pointer;
}
.ac-playing:before {
content: "\f04c" !important;
}
.ac-playing {
padding-top: 4px;
padding-left: 6px !important;
font-size: 35px !important;
}
}