-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (47 loc) · 920 Bytes
/
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
color: aliceblue;
}
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
background: #2e3440;
}
::-webkit-scrollbar-thumb {
background: #4c566a;
border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
background: #5e81ac;
}
body {
background-color: #222831;
display: flex;
flex-direction: column;
align-items: center;
}
canvas {
width: 600px;
height: 400px;
border: 1px solid black;
margin: 10px;
display: block;
margin: 20px;
}
#simcontrolcontainer {
background-color: #31363f;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
min-height: 20vh;
margin-top: 20px;
}
#header {
text-align: center;
margin-top: 20px;
}