-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
58 lines (51 loc) · 861 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
56
57
58
:root {
--lighter-blue: #abd6e7;
--light-blue: #56A1BF;
--blue: #0455BF;
--dark-blue: #033E8C;
--darker-blue: #022859;
--black-blue: #011526;
}
body {
background-color: var(--black-blue);
color: rgb(240, 240, 240);
font-family: Arial, sans-serif;
}
h1 {
text-align: center;
font-size: 4em;
}
h2 {
font-size: 2em;
margin: 40px 0px 10px 0px;
}
.made-by {
font-size: 1.1em;
margin: 40px;
}
.made-by a {
color: var(--light-blue);
}
canvas {
border: 1px solid black;
}
.canvas-container {
width: fit-content;
max-width: 100%;
max-height: 100%;
margin: auto;
padding: 0px;
}
.canvas-overflow {
overflow-x: auto;
width: 100%;
margin: 20px 0px;
padding: 0px;
}
button {
margin-top: 20px;
font-size: 1.1em;
}
.restart {
margin: 30px 0px 0px 0px;
}