pdufour commited on
Commit
8102d19
·
verified ·
1 Parent(s): e8a2907

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +42 -35
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
- margin: 10px;
17
- display: flex;
18
- flex-direction: column;
19
- gap: 15px;
20
- padding: 20px;
21
- border: 2px dashed #ccc;
22
- border-radius: 8px;
23
- cursor: pointer;
24
- text-align: center;
25
- }
26
- #query-input {
27
- width: 100%;
28
- padding: 8px;
29
- border: 1px solid #ccc;
30
- border-radius: 4px;
31
- margin-top: 10px;
32
- }
33
- #status {
34
- margin-top: 15px;
35
- display: block;
36
- color: #666;
37
- }
38
- #upload { display: none; }
39
- #example {
40
- color: blue;
41
- text-decoration: underline;
42
- cursor: pointer;
43
- }
44
- #preview {
45
- max-width: 100%;
46
- max-height: 300px;
47
- margin-top: 10px;
48
- display: none;
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; }