Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
|
@@ -1,28 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
body {
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
}
|
| 5 |
|
| 6 |
h1 {
|
| 7 |
-
|
| 8 |
-
|
|
|
|
| 9 |
}
|
| 10 |
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
margin-bottom: 10px;
|
| 15 |
-
margin-top: 5px;
|
| 16 |
}
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
border: 1px solid lightgray;
|
| 23 |
-
border-radius: 16px;
|
| 24 |
}
|
| 25 |
|
| 26 |
-
|
| 27 |
-
|
|
|
|
|
|
|
|
|
|
| 28 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
* {
|
| 2 |
+
margin: 0;
|
| 3 |
+
padding: 0;
|
| 4 |
+
box-sizing: border-box;
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
body {
|
| 8 |
+
font-family: Arial, sans-serif;
|
| 9 |
+
background-color: #f4f4f4;
|
| 10 |
+
display: flex;
|
| 11 |
+
justify-content: center;
|
| 12 |
+
align-items: center;
|
| 13 |
+
height: 100vh;
|
| 14 |
+
}
|
| 15 |
+
|
| 16 |
+
.container {
|
| 17 |
+
background-color: #fff;
|
| 18 |
+
padding: 2rem;
|
| 19 |
+
border-radius: 10px;
|
| 20 |
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
| 21 |
+
text-align: center;
|
| 22 |
+
max-width: 400px;
|
| 23 |
+
width: 100%;
|
| 24 |
}
|
| 25 |
|
| 26 |
h1 {
|
| 27 |
+
font-size: 24px;
|
| 28 |
+
margin-bottom: 20px;
|
| 29 |
+
color: #333;
|
| 30 |
}
|
| 31 |
|
| 32 |
+
.file-input {
|
| 33 |
+
margin-bottom: 20px;
|
| 34 |
+
text-align: left;
|
|
|
|
|
|
|
| 35 |
}
|
| 36 |
|
| 37 |
+
label {
|
| 38 |
+
display: block;
|
| 39 |
+
margin-bottom: 10px;
|
| 40 |
+
color: #555;
|
|
|
|
|
|
|
| 41 |
}
|
| 42 |
|
| 43 |
+
input[type="file"] {
|
| 44 |
+
width: 100%;
|
| 45 |
+
padding: 10px;
|
| 46 |
+
border: 1px solid #ccc;
|
| 47 |
+
border-radius: 5px;
|
| 48 |
}
|
| 49 |
+
|
| 50 |
+
button {
|
| 51 |
+
background-color: #4CAF50;
|
| 52 |
+
color: white;
|
| 53 |
+
padding: 10px 20px;
|
| 54 |
+
border: none;
|
| 55 |
+
border-radius: 5px;
|
| 56 |
+
cursor: pointer;
|
| 57 |
+
font-size: 16px;
|
| 58 |
+
}
|
| 59 |
+
|
| 60 |
+
button:hover {
|
| 61 |
+
background-color: #45a049;
|
| 62 |
+
}
|
| 63 |
+
|
| 64 |
+
.result {
|
| 65 |
+
margin-top: 20px;
|
| 66 |
+
font-size: 18px;
|
| 67 |
+
color: #333;
|
| 68 |
+
}
|