-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
107 lines (91 loc) · 1.58 KB
/
main.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
body,
html {
margin: 0px;
}
.download-image, .image-name, .image-picker {
margin: 10px 0;
}
canvas {
background: rgba(128, 128, 128, 0.3);
}
.container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.render-canvas {
image-rendering: pixelated;
padding: 0px;
margin: 0px;
display: block;
}
main {
display: block;
}
footer {
display: block;
}
.general-controls {
padding: 10px;
}
.spacer-for-controls {
height: 100px;
width: 100px;
display: block;
}
.tool-controls {
text-align: center;
padding: 0 10px 0 10px;
display: inline-block;
margin: auto;
min-height: 100px;
}
.tool-controls-container {
display: flex;
border: solid;
border-width: 2px 0 2px 0;
min-height: 100px;
width: 100%;
}
.tool-controls label {
}
.canvas-scrollable{
overflow-x: scroll;
overflow-y: scroll;
width: 100%;
max-height: 100%;
padding: 0px;
margin: 0px;
}
.horizontal-spacer {
flex: 1 1 auto;
}
.canvas-parent {
display: flex;
width: 100%;
max-height: 100%;
padding: 0px;
margin: 0px;
}
.full-screen-sans-controls {
width: 100%;
height: calc(100vh - 100px);
padding: 0px;
margin: 0px;
}
.noselect {
-webkit-touch-callout: none;
/* iOS Safari */
-webkit-user-select: none;
/* Chrome/Safari/Opera */
-khtml-user-select: none;
/* Konqueror */
-moz-user-select: none;
/* Firefox */
-ms-user-select: none;
/* Internet Explorer/Edge */
user-select: none;
/* Non-prefixed version, currently
not supported by any browser */
}