-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
53 lines (46 loc) · 883 Bytes
/
style.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
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
text-align: center;
}
button {
margin: 20px;
padding: 10px 20px;
font-size: 18px;
border-radius: 5px;
border: none;
background-color: #4CAF50;
color: #fff;
cursor: pointer;
}
button:hover {
background-color: #3e8e41;
}
.banner {
margin: 20px auto;
width: 600px;
height: 200px;
border: 3px solid black;
padding: 20px;
font-size: 24px;
text-align: center;
}
.score-banner {
margin: 20px auto;
width: 600px;
height: 100px;
border: 3px solid black;
padding: 20px;
font-size: 24px;
text-align: center;
}
.container {
max-width: 800px;
margin: 40px auto;
}
.reset-button {
background-color: #ff9800;
}
.reset-button:hover {
background-color: #e68a00;
}