-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
61 lines (51 loc) · 830 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
51
52
53
54
55
56
57
58
59
60
61
* {
font-family: sans-serif;
}
html, body, #app {
width: 100%;
height: 100%;
margin: 0;
}
#app {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
header h1 {
font-size: 48px;
}
header h1 span {
color: red;
}
.main {
width: min(500px, 100%);
display: flex;
flex-direction: column;
justify-content: center;
}
.main * {
width: 100%;
}
.main .velocity-number {
font-size: 64px;
margin-bottom: 20px;
text-align: center;
}
.controllers {
display: flex;
justify-content: flex-start;
width: min(500px, 100%);
margin-top: 20px;
}
.controllers .button {
color: #333;
cursor: pointer;
margin-right: 20px;
padding: 10px 10px 8px 10px;
border: 1px solid #333;
border-radius: 50%;
}
.controllers .button:active {
border: 1px solid red;
}