-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
93 lines (79 loc) · 1.35 KB
/
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
body {
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
color: #ccc;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
justify-content: center;
align-items: center;
width: 100%;
height: 100vh;
background-color: #000;
font-weight: 100;
}
canvas {
margin-top: 16px;
border-radius: 8px;
background-color: #fff;
}
.settings {
width: 800px;
display: flex;
font-size: 14px;
color: #ccc;
justify-content: center;
align-items: center;
}
.car-settings {
width: 3000px;
margin: 0 8px;
}
.car-title {
font-size: 16px;
color: #fff;
font-weight: 200;
}
.position-setting, .speed-setting, .acceleration-setting {
display: flex;
flex-direction: row;
}
.setting-title, .speed-title, .acceleration-title {
min-width: 140px;
}
input {
width: 64px;
}
.datas {
margin-top: 8px;
}
.data-area {
display: flex;
margin-top: 2px;
}
.data-title {
min-width: 216px;
}
.start-btn {
margin-top: 16px;
margin-bottom: 8px;
padding: 4px 12px;
background-color: white;
color: #000;
cursor: pointer;
transition: 250ms;
border-radius: 4px;
}
.start-btn:hover {
background-color: rgba(255, 255, 255, 0.8);
}
img {
width: 0;
height: 0;
display: none;
}
.disclaimer {
width: 0;
height: 0;
display: none;
}