-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (82 loc) · 1.7 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
#tbody {
background: #2c2c2c;
margin: 0;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}
#verticalButtons {
display: flex;
flex-direction: column;
gap: 3rem;
}
button {
border: none;
border-radius: 5px;
padding: 5px 5px 7px 5px;
margin: 2px;
cursor: pointer;
background-color: #d9dbde;
box-shadow: 0 3px 0 #989898;
/* transition: transform 0.1s ease-out;
-webkit-transition: transform 0.1s ease-out;
-moz-transition: transform 0.1s ease-out;
-ms-transition: transform 0.1s ease-out;
-o-transition: transform 0.1s ease-out; */
}
button:hover {
background: #ffffff;
}
button:active {
box-shadow: none;
background: #ffffff;
transform: translateY(3px);
-webkit-transform: translateY(3px);
-moz-transform: translateY(3px);
-ms-transform: translateY(3px);
-o-transform: translateY(3px);
}
#carCanvas {
background: #616163;
}
#ibody {
background: #2c2c2c;
margin: 0;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100vw;
}
#tform {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 10px;
color: #d9dbde;
}
#tform input[type="submit"] {
border: none;
border-radius: 5px;
padding: 7px 18px 7px 18px;
margin: 2px;
cursor: pointer;
background-color: #d9dbde;
box-shadow: 0 5px 0 #989898;
width: fit-content;
}
#tform input[type="submit"]:hover {
background: #ffffff;
}
#tform input[type="submit"]:active {
box-shadow: none;
background: #ffffff;
transform: translateY(5px);
-webkit-transform: translateY(5px);
-moz-transform: translateY(5px);
-ms-transform: translateY(5px);
-o-transform: translateY(5px);
}