Spaces:
Sleeping
Sleeping
Update static/styles.css
Browse files- static/styles.css +20 -3
static/styles.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
#container {
|
| 2 |
-
width:
|
| 3 |
height: 600px;
|
| 4 |
border: 1px solid #ccc;
|
| 5 |
margin: 20px auto;
|
|
@@ -10,8 +10,25 @@
|
|
| 10 |
margin-bottom: 10px;
|
| 11 |
}
|
| 12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
button {
|
| 14 |
-
padding: 10px 20px;
|
| 15 |
-
margin: 5px;
|
| 16 |
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
}
|
|
|
|
| 1 |
#container {
|
| 2 |
+
width: 1000px;
|
| 3 |
height: 600px;
|
| 4 |
border: 1px solid #ccc;
|
| 5 |
margin: 20px auto;
|
|
|
|
| 10 |
margin-bottom: 10px;
|
| 11 |
}
|
| 12 |
|
| 13 |
+
#codeFile, #codeInput, button {
|
| 14 |
+
margin: 10px;
|
| 15 |
+
padding: 10px;
|
| 16 |
+
}
|
| 17 |
+
|
| 18 |
+
#codeInput {
|
| 19 |
+
width: 80%;
|
| 20 |
+
max-width: 600px;
|
| 21 |
+
font-family: monospace;
|
| 22 |
+
}
|
| 23 |
+
|
| 24 |
button {
|
|
|
|
|
|
|
| 25 |
cursor: pointer;
|
| 26 |
+
background-color: #007bff;
|
| 27 |
+
color: white;
|
| 28 |
+
border: none;
|
| 29 |
+
border-radius: 5px;
|
| 30 |
+
}
|
| 31 |
+
|
| 32 |
+
button:hover {
|
| 33 |
+
background-color: #0056b3;
|
| 34 |
}
|