Spaces:
Running
Running
Update static/css/style.css
Browse files- static/css/style.css +108 -1
static/css/style.css
CHANGED
@@ -65,6 +65,7 @@ body {
|
|
65 |
|
66 |
.toolbar-content {
|
67 |
display: flex;
|
|
|
68 |
gap: 20px;
|
69 |
padding: 10px;
|
70 |
}
|
@@ -168,4 +169,110 @@ body {
|
|
168 |
|
169 |
.submit-btn:hover {
|
170 |
background: #388E3C;
|
171 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
|
66 |
.toolbar-content {
|
67 |
display: flex;
|
68 |
+
flex-direction: row;
|
69 |
gap: 20px;
|
70 |
padding: 10px;
|
71 |
}
|
|
|
169 |
|
170 |
.submit-btn:hover {
|
171 |
background: #388E3C;
|
172 |
+
}
|
173 |
+
|
174 |
+
@media (max-width: 950px) {
|
175 |
+
.bottom-toolbar {
|
176 |
+
left: 0;
|
177 |
+
bottom: 0;
|
178 |
+
transform: translateX(0);
|
179 |
+
width: auto;
|
180 |
+
border-radius: 0 8px 8px 0;
|
181 |
+
padding: 10px;
|
182 |
+
}
|
183 |
+
|
184 |
+
.toolbar-content {
|
185 |
+
flex-direction: column;
|
186 |
+
width: auto;
|
187 |
+
gap: 10px;
|
188 |
+
justify-content: flex-start;
|
189 |
+
align-items: flex-start;
|
190 |
+
}
|
191 |
+
|
192 |
+
.tool-group {
|
193 |
+
display: flex;
|
194 |
+
flex-direction: column;
|
195 |
+
align-items: flex-start;
|
196 |
+
gap: 10px;
|
197 |
+
padding: 5px 0;
|
198 |
+
border-right: none;
|
199 |
+
}
|
200 |
+
|
201 |
+
.tool-group:last-child {
|
202 |
+
border-right: none;
|
203 |
+
}
|
204 |
+
|
205 |
+
.tool-btn {
|
206 |
+
font-size: 16px;
|
207 |
+
padding: 8px;
|
208 |
+
width: 100%;
|
209 |
+
}
|
210 |
+
|
211 |
+
.tool-btn .material-icons {
|
212 |
+
font-size: 18px;
|
213 |
+
}
|
214 |
+
|
215 |
+
#colorPicker,
|
216 |
+
#brushSize {
|
217 |
+
width: 50px;
|
218 |
+
height: 50px;
|
219 |
+
margin: 0 auto;
|
220 |
+
}
|
221 |
+
|
222 |
+
#brushSizeLabel {
|
223 |
+
font-size: 12px;
|
224 |
+
}
|
225 |
+
|
226 |
+
.action-buttons {
|
227 |
+
display: flex;
|
228 |
+
flex-direction: column;
|
229 |
+
gap: 10px;
|
230 |
+
width: auto;
|
231 |
+
justify-content: flex-start;
|
232 |
+
}
|
233 |
+
|
234 |
+
.action-btn {
|
235 |
+
font-size: 12px;
|
236 |
+
padding: 6px 12px;
|
237 |
+
width: 100%;
|
238 |
+
}
|
239 |
+
|
240 |
+
.page-controls {
|
241 |
+
display: flex;
|
242 |
+
flex-direction: column;
|
243 |
+
gap: 10px;
|
244 |
+
width: auto;
|
245 |
+
align-items: flex-start;
|
246 |
+
}
|
247 |
+
|
248 |
+
#pageInfo {
|
249 |
+
font-size: 12px;
|
250 |
+
min-width: 60px;
|
251 |
+
text-align: center;
|
252 |
+
}
|
253 |
+
|
254 |
+
.page-controls .action-btn {
|
255 |
+
font-size: 14px;
|
256 |
+
padding: 8px 12px;
|
257 |
+
width: 100%;
|
258 |
+
}
|
259 |
+
|
260 |
+
#whiteboard {
|
261 |
+
width: 100vw;
|
262 |
+
height: 100vh;
|
263 |
+
}
|
264 |
+
|
265 |
+
.whiteboard-container {
|
266 |
+
width: 100vw;
|
267 |
+
height: 100vh;
|
268 |
+
}
|
269 |
+
|
270 |
+
.submit-btn,
|
271 |
+
.ai-btn,
|
272 |
+
.clear-btn {
|
273 |
+
font-size: 14px;
|
274 |
+
padding: 8px 16px;
|
275 |
+
width: 100%;
|
276 |
+
}
|
277 |
+
}
|
278 |
+
|