Update style.css
Browse files
style.css
CHANGED
@@ -12,38 +12,45 @@ body {
|
|
12 |
|
13 |
body { font-family: system-ui; max-width: 800px; margin: 0 auto; padding: 20px; }
|
14 |
|
15 |
-
#container {
|
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 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
|
13 |
body { font-family: system-ui; max-width: 800px; margin: 0 auto; padding: 20px; }
|
14 |
|
15 |
+
#container {
|
16 |
+
display: flex;
|
17 |
+
flex-direction: column;
|
18 |
+
align-items: center;
|
19 |
+
gap: 15px;
|
20 |
+
padding: 20px;
|
21 |
+
border: 2px dashed #ccc;
|
22 |
+
border-radius: 8px;
|
23 |
+
cursor: pointer;
|
24 |
+
text-align: center;
|
25 |
+
}
|
26 |
+
#prompt-stage {
|
27 |
+
display: none;
|
28 |
+
width: 100%;
|
29 |
+
}
|
30 |
+
#upload-stage {
|
31 |
+
width: 100%;
|
32 |
+
}
|
33 |
+
#preview-image {
|
34 |
+
max-height: 200px;
|
35 |
+
margin: 10px 0;
|
36 |
+
}
|
37 |
+
#prompt-input {
|
38 |
+
width: 100%;
|
39 |
+
padding: 8px;
|
40 |
+
margin: 10px 0;
|
41 |
+
border: 1px solid #ccc;
|
42 |
+
border-radius: 4px;
|
43 |
+
}
|
44 |
+
.button-group {
|
45 |
+
display: flex;
|
46 |
+
gap: 10px;
|
47 |
+
justify-content: center;
|
48 |
+
margin-top: 10px;
|
49 |
+
}
|
50 |
+
button {
|
51 |
+
padding: 8px 16px;
|
52 |
+
border-radius: 4px;
|
53 |
+
cursor: pointer;
|
54 |
+
}
|
55 |
+
#upload { display: none; }
|
56 |
+
#example { color: blue; text-decoration: underline; cursor: pointer; }
|