Update style.css
Browse files
style.css
CHANGED
|
@@ -1,28 +1,63 @@
|
|
| 1 |
body {
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
| 4 |
}
|
| 5 |
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
}
|
| 10 |
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
margin-bottom: 10px;
|
| 15 |
-
margin-top: 5px;
|
| 16 |
}
|
| 17 |
|
| 18 |
-
.
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
|
|
|
| 24 |
}
|
| 25 |
|
| 26 |
-
.
|
| 27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
}
|