Spaces:
Runtime error
Runtime error
Create style.css
Browse files
style.css
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#left-panel {
|
| 2 |
+
height: 90%;
|
| 3 |
+
overflow-y: auto;
|
| 4 |
+
border-right: 1px solid #ccc;
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
+
#right-panel {
|
| 8 |
+
height: 90%;
|
| 9 |
+
overflow-y: auto;
|
| 10 |
+
}
|
| 11 |
+
|
| 12 |
+
#combine-button {
|
| 13 |
+
position: absolute;
|
| 14 |
+
bottom: 10px;
|
| 15 |
+
left: 10px;
|
| 16 |
+
width: calc(100% - 20px);
|
| 17 |
+
background-color: orange;
|
| 18 |
+
color: white;
|
| 19 |
+
}
|
| 20 |
+
|
| 21 |
+
#download-zip {
|
| 22 |
+
position: absolute;
|
| 23 |
+
bottom: 10px;
|
| 24 |
+
right: 10px;
|
| 25 |
+
width: calc(100% - 20px);
|
| 26 |
+
background-color: blue;
|
| 27 |
+
color: white;
|
| 28 |
+
}
|