-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
65 lines (65 loc) · 1.06 KB
/
index.css
File metadata and controls
65 lines (65 loc) · 1.06 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
*,
*::after,
*::before {
margin: 0;
padding: 0;
}
html, body {
height: 100%;
}
body {
background: rgb(255, 132, 100);
background: linear-gradient(90deg, rgba(255, 132, 100, 1) 0%,rgba(253, 105, 165, 1) 100%);
}
.container {
display: flex;
align-items: center;
justify-content: center;
height: 90%;
}
.card-body {
background: #fff;
padding: 25px;
border-radius: 10px;
text-align: center;
}
.card-body h1 {
margin-bottom: 15px;
font-size: 70px;
}
.card-btn button {
border-radius: 15px;
color: #262626;
padding: 80px;
display: inline-block;
align-items: center;
/* justify-content: space-evenly; */
border: 0;
height: 50px;
font-size: 40px;
font-weight: bold;
margin: 30px;
cursor: pointer;
transition: 0.5s;
}
button#decrement {
background: #f6e58d;
}
button#decrement:hover {
background: #f79f1f;
color: #fff;
}
button#reset {
background: #f3a683;
}
button#reset:hover {
background: #ea2027;
color: #fff;
}
button#increment {
background: #c4e538;
}
button#increment:hover {
background: #009432;
color: #fff;
}