-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
104 lines (101 loc) · 2.6 KB
/
styles.css
File metadata and controls
104 lines (101 loc) · 2.6 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
* {
padding: 0;
margin: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
body{
display: flex;
justify-content: center;
}
.Counter {
padding: 20px;
margin-top: 30px;
display: flex;
flex-direction: column;
background: rgb(94, 94, 94);
width: 300px;
height: 300px;
border-radius: 20px;
box-shadow: 0px 0px 15px rgb(26, 26, 26), inset 0px 0px 25px rgb(33, 32, 32);
}
.Counter .counterTitle {
text-transform: uppercase;
text-align: center;
border-bottom: 2px solid black;
}
.Counter .counterDisplay {
display: block;
text-align: center;
color: white;
background-color: rgb(53, 53, 53);
font-size: 50px;
border-bottom: 2px solid black;
box-shadow: -10px 0 10px -5px rgb(138, 138, 138), 10px 0 10px -5px rgb(155, 154, 154);
}
.Counter .counterButtons {
display: flex;
flex-direction: row;
height: 100%;
justify-items: stretch;
}
.Counter .counterButtons .powerButtons {
height: 100%;
width: 30%;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
.Counter .counterButtons .powerButtons .powerOn {
padding: 10px;
width: 50px;
border-radius: 20px;
color: rgb(0, 0, 0);
font-weight: 700;
font-size: 15px;
border: 1px solid white;
background: radial-gradient(circle, rgb(250, 94, 94), rgb(198, 2, 2));
}
.Counter .counterButtons .powerButtons .powerOn:hover {
transform: scale(1.1);
background-color: rgb(171, 4, 4);
}
.Counter .counterButtons .powerButtons .reset {
padding: 5px 10px;
font-size: 10px;
border-radius: 5px;
font-weight: 700;
text-transform: uppercase;
}
.Counter .counterButtons .powerButtons .reset:hover {
background-color: black;
color: white;
}
.Counter .counterButtons .countButtons {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
color: white;
width: 70%;
-moz-column-gap: 4px;
column-gap: 4px;
}
.Counter .counterButtons .countButtons .btns {
display: flex;
flex-direction: column;
text-transform: uppercase;
}
.Counter .counterButtons .countButtons .btns .countBtn {
border: none;
background-color: white;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
font-weight: 900;
font-size: 25px;
box-shadow: 2px 4px 8px rgb(69, 69, 69);
}
.Counter .counterButtons .countButtons .btns .countBtn:hover {
transform: scale(1.1);
background-color: rgb(210, 207, 207);
}/*# sourceMappingURL=styles.css.map */