-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinc.css
More file actions
75 lines (70 loc) · 1.19 KB
/
Copy pathinc.css
File metadata and controls
75 lines (70 loc) · 1.19 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
*{
box-sizing: border-box;
margin:0;
padding:0;
}
/* body{
background: #fff;
}
.main{
display: flex;
justify-content: center;
align-items: center;
margin-top:15%;
}
.box{
width:30%;
background: #aaa;
border-radius: 10px;
box-shadow: 15px 15px 25px rgba(255,255,255,0.7);
}
.box .text{
font-size: 30px;
text-align: center;
font-weight: 600;
color: #000;
padding:30px 20px 10px 20px;
}
.box .num{
font-size: 40px;
text-align: center;
font-weight: 900;
padding-top: 10px;
}
.buttons{
padding:30px 40px;
}
.buttons .btn{
font-size: 16px;
padding:6px 10px;
} */
body,html{
display: grid;
min-height: 100%;
place-items: center;
background: #eff4f5;
}
.box{
width:600px;
height: 350px;
box-shadow: 10px 10px 15px rgb(192,183,183), -10px -10px 15px white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border-radius: 20px;
}
.text{
font-size: 3rem;
}
.num{
font-size: 5rem;
margin-bottom:1rem;
}
.btn-dec, .btn-inc{
font-size: 1.3rem;
padding:.7rem 1.5rem;
cursor: pointer;
outline:none;
margin:0 2rem;
}