Update static/style.css
Browse files- static/style.css +23 -19
static/style.css
CHANGED
|
@@ -1,32 +1,36 @@
|
|
| 1 |
body {
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
}
|
| 6 |
|
| 7 |
textarea {
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
}
|
| 14 |
|
| 15 |
button {
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
|
|
|
|
|
|
| 22 |
}
|
| 23 |
|
| 24 |
button:hover {
|
| 25 |
-
|
| 26 |
}
|
| 27 |
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
|
|
|
|
|
|
| 32 |
}
|
|
|
|
| 1 |
body {
|
| 2 |
+
font-family: "Segoe UI", sans-serif;
|
| 3 |
+
background-color: #fafafa;
|
| 4 |
+
padding: 20px;
|
| 5 |
}
|
| 6 |
|
| 7 |
textarea {
|
| 8 |
+
width: 100%;
|
| 9 |
+
font-family: monospace;
|
| 10 |
+
padding: 10px;
|
| 11 |
+
border: 1px solid #ccc;
|
| 12 |
+
border-radius: 6px;
|
| 13 |
}
|
| 14 |
|
| 15 |
button {
|
| 16 |
+
margin-top: 5px;
|
| 17 |
+
margin-right: 10px;
|
| 18 |
+
padding: 8px 14px;
|
| 19 |
+
background-color: #4CAF50;
|
| 20 |
+
color: white;
|
| 21 |
+
border: none;
|
| 22 |
+
border-radius: 6px;
|
| 23 |
+
cursor: pointer;
|
| 24 |
}
|
| 25 |
|
| 26 |
button:hover {
|
| 27 |
+
background-color: #45a049;
|
| 28 |
}
|
| 29 |
|
| 30 |
+
#viz {
|
| 31 |
+
margin-top: 30px;
|
| 32 |
+
}
|
| 33 |
+
|
| 34 |
+
#controls {
|
| 35 |
+
margin-top: 20px;
|
| 36 |
}
|