-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (47 loc) · 991 Bytes
/
style.css
File metadata and controls
52 lines (47 loc) · 991 Bytes
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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: Georgia, 'Times New Roman', Times, serif;
}
body{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container{
height: 450px;
width: 400px;
box-shadow: 0px 0px 20px 0 rgba(0, 0, 0, 0.25);
display: flex;
justify-content: space-around;
flex-direction: column;
align-items: center;
border-radius: 15px;
}
.counter, .btnBox{
height: 110px;
width: 300px;
display: flex;
align-items: center;
justify-content: space-between;
border-radius: 10px;
}
.counter{
justify-content: center;
box-shadow: inset 0 0 20px 0 rgba(0, 0, 0, 0.25);
font-size: 45px;
}
.btn{
height: 75px;
width: 75px;
border-radius: 100%;
background: none;
border: 2px solid rgba(0, 0, 0, 0.25);
display: flex;
justify-content: center;
align-items: center;
font-size: 2.2rem;
cursor: pointer;
}