-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathCirclePlay.scss
34 lines (32 loc) · 938 Bytes
/
CirclePlay.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
.circle-play {
// z-index: 999;
cursor: pointer;
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
position: relative;
background-color: #1ed760;
color: var(--text-base, #000000);
display: flex;
border-radius: var(--encore-button-corner-radius, 9999px);
font-size: inherit;
min-block-size: var(--encore-control-size-smaller, 40px);
-webkit-box-align: center;
align-items: center;
-webkit-box-pack: center;
justify-content: center;
margin-right: 15px;
box-shadow: 0 8px 8px rgba(0, 0, 0, 0.3);
inline-size: var(--encore-control-size-smaller, 40px);
block-size: var(--encore-control-size-smaller, 40px);
&.big {
min-block-size: var(--encore-control-size-smaller, 60px);
inline-size: var(--encore-control-size-smaller, 60px);
block-size: var(--encore-control-size-smaller, 60px);
}
&:hover {
transform: scale(1.1);
}
&:active {
transform: scale(1);
}
}