-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
74 lines (66 loc) · 1.39 KB
/
styles.css
File metadata and controls
74 lines (66 loc) · 1.39 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
html,
body {
background: #020202;
color: #fff;
padding: 20px;
user-select: none;
text-align: center;
}
.display {
overflow: hidden;
position: relative;
display: inline-block;
min-width: 862px;
padding: 40px 70px 40px 40px;
border: 1px solid #111;
border-radius: 40px;
}
/* .display::after {
content: '';
position: absolute;
top: -100%;
left: -100%;
right: -100%;
bottom: -100%;
background-image: url(grill.png);
background-position: center;
background-repeat: repeat;
background-size: 8%;
mix-blend-mode: multiply;
transform: rotate(2deg);
} */
svg {
display: inline-block;
width: 180px;
margin-right: -30px;
overflow: visible;
}
.segment {
fill: #111;
transition: fill 1s cubic-bezier(0.230, 1.000, 0.320, 1.000);
}
.segment.on {
fill: #df7b00;
/* filter: drop-shadow(0 0 15px rgba(223, 123, 0, 0.75)); */
transition: fill 0.05s linear;
}
.control {
margin-top: 50px;
}
.control input {
width: 210px;
padding: 10px 15px;
outline: none;
background-color: transparent;
color: #df7b00;
border: 1px solid #df7b00;
border-radius: 5px;
font-size: 24px;
appearance: textfield;
-moz-appearance: textfield;
}
.control input::-webkit-outer-spin-button,
.control input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}