-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutility.css
73 lines (67 loc) · 1.22 KB
/
utility.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
@font-face {
font-family: mainFont;
src: url(https://encore.scdn.co/fonts/CircularSp-Arab-Book-8c0cff2514cf52ffcc4976fa813c4712.woff2);
}
* {
font-family: mainFont;
}
.dfc {
display: flex;
align-items: center;
justify-content: center;
}
.p10 {
padding: 10px;
}
.m10 {
margin: 10px;
}
.hc :hover {
background-color: #252525;
border-radius: 100%;
}
.hr :hover {
background-color: #252525;
border-radius: 500px;
}
.rotate180 {
transform: rotate(180deg) !important;
}
.white-on-hover:hover svg {
fill: #fff;
}
.en:hover {
height: 105%;
width: 105%;
}
.lines {
position: relative;
}
.line-bg {
height: 4px;
background-color: #4f4f4f;
}
.line-above {
position: absolute;
left: 0;
top: 0;
background-color: #fff;
border-radius: 10px;
height: 4px;
}
.lines:hover .line-above, .lines:active .line-above{
background-color: #0f0;
}
.lines:hover .line-above .cur-value-circle, .lines:active .line-above .cur-value-circle, .cur-value-circle:active{
display: block;
}
.cur-value-circle {
width: 14px;
height: 14px;
background-color: #fff;
border-radius: 100%;
position: absolute;
right: -7px;
top: -4px;
display:none;
}