syd24 commited on
Commit
739afc4
·
verified ·
1 Parent(s): 91f3c3e

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +53 -18
style.css CHANGED
@@ -1,28 +1,63 @@
1
  body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
 
 
4
  }
5
 
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
 
 
 
 
9
  }
10
 
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
  }
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
 
24
  }
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
 
 
 
 
 
 
28
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  body {
2
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
3
+ background: #f8f9fa;
4
+ margin: 0;
5
+ padding: 20px;
6
  }
7
 
8
+ .container {
9
+ max-width: 800px;
10
+ margin: 0 auto;
11
+ background: white;
12
+ padding: 20px;
13
+ border-radius: 10px;
14
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
15
  }
16
 
17
+ .upload-section {
18
+ text-align: center;
19
+ padding: 20px;
 
 
20
  }
21
 
22
+ .upload-btn {
23
+ background: #3498db;
24
+ color: white;
25
+ padding: 15px 30px;
26
+ border-radius: 5px;
27
+ cursor: pointer;
28
+ display: inline-block;
29
  }
30
 
31
+ .search-btn {
32
+ background: #e74c3c;
33
+ color: white;
34
+ padding: 10px 20px;
35
+ border: none;
36
+ border-radius: 5px;
37
+ margin-top: 10px;
38
+ cursor: pointer;
39
  }
40
+
41
+ .preview-img {
42
+ max-width: 300px;
43
+ margin: 20px 0;
44
+ }
45
+
46
+ .loading {
47
+ text-align: center;
48
+ padding: 20px;
49
+ display: none;
50
+ }
51
+
52
+ .results-section {
53
+ margin-top: 20px;
54
+ padding: 15px;
55
+ border-top: 1px solid #eee;
56
+ }
57
+
58
+ .result-item {
59
+ padding: 10px;
60
+ margin: 10px 0;
61
+ background: #f1f1f1;
62
+ border-radius: 5px;
63
+ }