-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
50 lines (45 loc) · 904 Bytes
/
styles.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
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
background-color: #f5f5f5;
}
.counter-container {
background-color: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
text-align: center;
}
.counter-controls {
display: flex;
gap: 1rem;
align-items: center;
margin: 1rem 0;
justify-content: center;
}
button {
padding: 0.5rem 1rem;
font-size: 1.2rem;
cursor: pointer;
background: #007bff;
color: white;
border: none;
border-radius: 4px;
transition: background-color 0.3s ease;
min-width: 50px;
}
button:hover {
background: #0056b3;
}
.display {
font-size: 3rem;
font-weight: bold;
color: #333;
min-width: 100px;
padding: 0.5rem;
}