-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
54 lines (45 loc) · 758 Bytes
/
main.css
File metadata and controls
54 lines (45 loc) · 758 Bytes
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
/*
Author: Enzo Mayo
Date: 12/09/2020
*/
canvas {
border: 1px solid black;
display: block;
margin: 0 auto;
background: #ffffff;
pointer-events: auto;
touch-action: none;
}
header h1 {
text-align: center;
}
body {
margin: 0;
padding: 0;
background: white;
width: 100%;
height: 100%;
font-size: 1.5em;
}
/* Make a dark theme because I hate being blinded.*/
.info {
padding: 1%;
border: 1px solid black;
margin: 0 auto;
}
/*For error output*/
#output {
text-align: center;
}
.info div {
display: none;
}
.info h1 {
text-decoration: underline;
}
/*
Utility class for CSS.
*/
.show {
display: block !important;
}