-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (61 loc) · 1.32 KB
/
style.css
File metadata and controls
70 lines (61 loc) · 1.32 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-image: linear-gradient(90.5deg, rgba(152, 45, 255, 1) 0.7%, rgba(90, 241, 255, 1) 51.5%, rgba(65, 239, 164, 1) 100.6%);
display: flex;
}
.container {
margin: 200px auto;
justify-content: center;
background-color: white;
border-radius: 10px;
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
max-width: 600px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
h1 {
color: #333;
border: 1px solid black;
padding: 6px;
margin-bottom: 20px;
text-align: center;
}
.counter-display {
font-size: 72px;
font-weight: bold;
color: #333;
margin-bottom: 20px;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.button-container {
margin-bottom: 20px;
}
button {
padding: 12px 24px;
margin: 0 20px;
border: none;
color: #ffffff;
background-color: #007bff;
border-radius: 5px;
cursor: pointer;
font-weight: bold;
font-size: 24px;
}
.blue-button:hover {
background-color: #222bff;
}
#resetBtn {
width: 200px;
background-color: #d62828;
font-size: 16px;
}
#resetBtn:hover {
background-color: #c82333;
}