-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (51 loc) · 1.14 KB
/
style.css
File metadata and controls
65 lines (51 loc) · 1.14 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
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 200vh;
margin: 0;
}
#countlabel {
font-size: 5rem;
font-weight: bold;
margin-bottom: 30px;
color: #333;
}
#btngroup {
display: flex;
gap: 20px;
}
button {
border: 2px solid black;
background-color: #ff6b6b;
padding: 10px 30px;
font-size: 1.2rem;
font-weight: bold;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s ease;
}
#decreasebtn {
background-color: #ff6b6b;
color: white;
}
#decreasebtn:hover {
background-color: #ff4c4c;
}
#resetbtn {
background-color: #ccc;
color: #333;
}
#resetbtn:hover {
background-color: #bbb;
}
#increasebtn {
background-color: #4caf50;
color: white;
}
#increasebtn:hover {
background-color: #45a049;
}