-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
84 lines (73 loc) · 1.17 KB
/
index.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
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
body {
margin: 0;
font-family: "Roboto", sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: #f0f0f0;
}
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
}
.content {
background: #fff;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 40px 60px;
text-align: center;
}
.head {
margin: 0;
margin-bottom: 20px;
font-size: 24px;
color: #333;
}
.innerpanel {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 20px;
}
.btnbtn-dec,
.btnbtn-inc {
background: none;
border: none;
cursor: pointer;
outline: none;
margin: 0 20px;
}
.btnbtn-dec img,
.btnbtn-inc img {
width: 30px;
height: 30px;
}
#text {
font-size: 36px;
margin: 0 20px;
}
.reset {
background-color: aquamarine;
border: none;
border-radius: 5px;
padding: 10px 20px;
cursor: pointer;
font-size: 16px;
}
.reset:hover {
background-color: #76d7c4;
}
.smalltext {
margin-top: 20px;
color: #777;
font-size: 14px;
}
.borderforbutton {
border-style: groove;
padding: 20px;
border-radius: 10px;
}