-
Notifications
You must be signed in to change notification settings - Fork 12
/
style.css
56 lines (54 loc) · 972 Bytes
/
style.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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
background: #050505;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
}
.container{
display: flex;
align-items: center;
justify-content: center;
width: 400px;
height: 350px;
}
.counter{
width: 250px;
height: 250px;
background: #1B9AAA;
border-radius: 150px 150px 500px 500px;
position: relative;
}
.plusbtn .far{
font-size: 50px;
color: #EBFCFB;
position: absolute;
left: 40px;
top: 150px;
}
.minusbtn .far{
font-size: 50px;
color: #EBFCFB;
position: absolute;
right: 40px;
top: 150px;
}
.clearbtn .far{
font-size: 45px;
color: #fb8500;
position: absolute;
left: 105px;
top: 190px;
}
#num{
text-align: center;
font-size: 60px;
position: absolute;
top: 30px;
left: 110px;
}