Donmill commited on
Commit
2e1a570
1 Parent(s): 193d583
Files changed (1) hide show
  1. style.css +213 -0
style.css ADDED
@@ -0,0 +1,213 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css');
2
+
3
+ /* the outermost contrained of the app */
4
+ .main{
5
+ display: flex;
6
+ justify-content: center;
7
+ align-items: center;
8
+ width: 1200px;
9
+ }
10
+
11
+ /* #main_row{
12
+
13
+ } */
14
+
15
+ /* hide this class */
16
+ .svelte-p4aq0j {
17
+ display: none;
18
+ }
19
+
20
+ .wrap.svelte-p4aq0j.svelte-p4aq0j {
21
+ display: none;
22
+ }
23
+
24
+ #download_sketch{
25
+ display: none;
26
+ }
27
+
28
+ #download_output{
29
+ display: none;
30
+ }
31
+
32
+ #column_input, #column_output{
33
+ width: 500px;
34
+ display: flex;
35
+ /* justify-content: center; */
36
+ align-items: center;
37
+ }
38
+
39
+ #tools_header, #input_header, #output_header, #process_header {
40
+ display: flex;
41
+ justify-content: center;
42
+ align-items: center;
43
+ width: 400px;
44
+ }
45
+
46
+
47
+ #nn{
48
+ width: 100px;
49
+ height: 100px;
50
+ }
51
+
52
+
53
+ #column_process{
54
+ display: flex;
55
+ justify-content: center; /* Center horizontally */
56
+ align-items: center; /* Center vertically */
57
+ height: 600px;
58
+ }
59
+
60
+ /* this is the "pix2pix-turbo" above the process button */
61
+ #description > span{
62
+ display: flex;
63
+ justify-content: center; /* Center horizontally */
64
+ align-items: center; /* Center vertically */
65
+ }
66
+
67
+ /* this is the "UNDO_BUTTON, X_BUTTON" */
68
+ div.svelte-1030q2h{
69
+ width: 30px;
70
+ height: 30px;
71
+ display: none;
72
+ }
73
+
74
+
75
+ #component-5 > div{
76
+ border: 0px;
77
+ box-shadow: none;
78
+ }
79
+
80
+ #cb-eraser, #cb-line{
81
+ display: none;
82
+ }
83
+
84
+ /* eraser text */
85
+ #cb-eraser > label > span{
86
+ display: none;
87
+ }
88
+ #cb-line > label > span{
89
+ display: none;
90
+ }
91
+
92
+
93
+ .button-row {
94
+ display: flex;
95
+ justify-content: center;
96
+ align-items: center;
97
+ height: 50px;
98
+ border: 0px;
99
+ }
100
+
101
+ #my-toggle-pencil{
102
+ background-image: url("https://icons.getbootstrap.com/assets/icons/pencil.svg");
103
+ background-color: white;
104
+ background-size: cover;
105
+ margin: 0px;
106
+ box-shadow: none;
107
+ width: 40px;
108
+ height: 40px;
109
+ }
110
+
111
+ #my-toggle-pencil.clicked{
112
+ background-image: url("https://icons.getbootstrap.com/assets/icons/pencil-fill.svg");
113
+ transform: scale(0.98);
114
+ background-color: gray;
115
+ background-size: cover;
116
+ /* background-size: 95%;
117
+ background-position: center; */
118
+ /* border: 2px solid #000; */
119
+ margin: 0px;
120
+ box-shadow: none;
121
+ width: 40px;
122
+ height: 40px;
123
+ }
124
+
125
+
126
+ #my-toggle-eraser{
127
+ background-image: url("https://icons.getbootstrap.com/assets/icons/eraser.svg");
128
+ background-color: white;
129
+ background-color: white;
130
+ background-size: cover;
131
+ margin: 0px;
132
+ box-shadow: none;
133
+ width: 40px;
134
+ height: 40px;
135
+ }
136
+
137
+ #my-toggle-eraser.clicked{
138
+ background-image: url("https://icons.getbootstrap.com/assets/icons/eraser-fill.svg");
139
+ transform: scale(0.98);
140
+ background-color: gray;
141
+ background-size: cover;
142
+ margin: 0px;
143
+ box-shadow: none;
144
+ width: 40px;
145
+ height: 40px;
146
+ }
147
+
148
+
149
+
150
+ #my-button-undo{
151
+ background-image: url("https://icons.getbootstrap.com/assets/icons/arrow-counterclockwise.svg");
152
+ background-color: white;
153
+ background-size: cover;
154
+ margin: 0px;
155
+ box-shadow: none;
156
+ width: 40px;
157
+ height: 40px;
158
+ }
159
+
160
+ #my-button-clear{
161
+ background-image: url("https://icons.getbootstrap.com/assets/icons/x-lg.svg");
162
+ background-color: white;
163
+ background-size: cover;
164
+ margin: 0px;
165
+ box-shadow: none;
166
+ width: 40px;
167
+ height: 40px;
168
+
169
+ }
170
+
171
+
172
+ #my-button-down{
173
+ background-image: url("https://icons.getbootstrap.com/assets/icons/arrow-down.svg");
174
+ background-color: white;
175
+ background-size: cover;
176
+ margin: 0px;
177
+ box-shadow: none;
178
+ width: 40px;
179
+ height: 40px;
180
+
181
+ }
182
+
183
+ .pad2{
184
+ padding: 2px;
185
+ background-color: white;
186
+ border: 2px solid #000;
187
+ margin: 10px;
188
+ display: flex;
189
+ justify-content: center; /* Center horizontally */
190
+ align-items: center; /* Center vertically */
191
+ }
192
+
193
+
194
+
195
+
196
+ #output_image, #input_image{
197
+ border-radius: 0px;
198
+ border: 5px solid #000;
199
+ border-width: none;
200
+ }
201
+
202
+
203
+ #output_image > img{
204
+ border: 5px solid #000;
205
+ border-radius: 0px;
206
+ border-width: none;
207
+ }
208
+
209
+ #input_image > div.image-container.svelte-p3y7hu > div.wrap.svelte-yigbas > canvas:nth-child(1){
210
+ border: 5px solid #000;
211
+ border-radius: 0px;
212
+ border-width: none;
213
+ }