Spaces:
Build error
Build error
- frontend/css.css +25 -0
frontend/css.css
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
font-family: Arial, sans-serif;
|
| 3 |
+
background-color: #f9f9f9;
|
| 4 |
+
margin: 0;
|
| 5 |
+
padding: 0;
|
| 6 |
+
}
|
| 7 |
+
|
| 8 |
+
.pdf-viewer {
|
| 9 |
+
border: 1px solid #ddd;
|
| 10 |
+
padding: 10px;
|
| 11 |
+
background-color: #fff;
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
+
button {
|
| 15 |
+
background-color: #4CAF50;
|
| 16 |
+
color: white;
|
| 17 |
+
border: none;
|
| 18 |
+
padding: 10px;
|
| 19 |
+
cursor: pointer;
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
button:disabled {
|
| 23 |
+
background-color: #ccc;
|
| 24 |
+
cursor: not-allowed;
|
| 25 |
+
}
|