-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
47 lines (42 loc) · 821 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
body {
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f0f0;
}
canvas {
border: 2px solid #333;
margin: auto;
}
#increaseSpeedButton {
background-color: #04AA6D;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
#decreaseSpeedButton {
background-color: #aa0404;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
#increaseSpeedButton:hover,
#decreaseSpeedButton:hover {
cursor: pointer;
color: black;
}
#speedDisplay {
margin-top: 10px;
}