-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (53 loc) · 1.09 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
body {
margin: 0;
background-color: #f0f0f0;
overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
font-family: Arial, sans-serif;
}
#carCanvas {
background-color: #333;
margin-top: 0px;
border-radius: 8px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.buttons {
margin-top: 20px;
display: flex;
gap: 10px;
position: absolute;
top: 0;
right: 20px;
}
.buttons button {
padding: 10px 20px;
font-size: 16px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.buttons button:hover {
background-color: #0056b3;
}
.MESSAGE {
position: absolute;
top: 20px;
left: 50%;
transform: translateX(-50%);
font-size: 24px;
color: white;
background-color: rgba(0, 0, 0, 0.7);
padding: 10px;
border: 2px solid white;
border-radius: 8px;
}
.hidden {
display: none !important;
}