-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstylesheet.css
63 lines (57 loc) · 1.14 KB
/
stylesheet.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
* {
margin: 0px;
padding: 0px;
border: 0px;
outline: 0px;
}
body {
background-color: #001219;
}
#imageselector {
color: white;
background-color: #005f73;
padding: 10px;
border-radius: 5px;
text-align: center;
align-content: center;
justify-content: center;
align-items: center;
position: fixed;
left: 10px;
top: 10px;
}
#container {
text-align: center;
align-content: center;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100vw;
}
#modalcontainer {
text-align: center;
align-content: center;
display: none;
justify-content: center;
align-items: center;
height: 100vh;
width: 100vw;
position: fixed;
left: 0;
top: 0;
pointer-events: none;
}
#modalchild {
color: white;
background-color: #005f73;
padding: 10px;
border-radius: 5px;
pointer-events: none;
}
canvas {
image-rendering: -moz-crisp-edges;
image-rendering: -webkit-crisp-edges;
image-rendering: pixelated;
image-rendering: crisp-edges;
}