Spaces:
Sleeping
Sleeping
Update style.css
Browse files
style.css
CHANGED
|
@@ -1,25 +1,30 @@
|
|
| 1 |
body {
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
padding: 1.5em;
|
| 7 |
}
|
| 8 |
header {
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
}
|
| 13 |
button {
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
}
|
| 21 |
pre {
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
|
|
|
|
|
|
| 25 |
}
|
|
|
|
| 1 |
body {
|
| 2 |
+
background-color: #0f0f0f;
|
| 3 |
+
color: #fff;
|
| 4 |
+
font-family: 'Segoe UI', sans-serif;
|
| 5 |
+
padding: 2em;
|
|
|
|
| 6 |
}
|
| 7 |
header {
|
| 8 |
+
text-align: center;
|
| 9 |
+
margin-bottom: 2em;
|
| 10 |
+
}
|
| 11 |
+
input {
|
| 12 |
+
padding: 0.5em;
|
| 13 |
+
width: 60%;
|
| 14 |
+
margin-right: 1em;
|
| 15 |
}
|
| 16 |
button {
|
| 17 |
+
padding: 0.6em 1.2em;
|
| 18 |
+
background: #00ffff;
|
| 19 |
+
border: none;
|
| 20 |
+
color: #000;
|
| 21 |
+
font-weight: bold;
|
| 22 |
+
cursor: pointer;
|
| 23 |
}
|
| 24 |
pre {
|
| 25 |
+
background: #1e1e1e;
|
| 26 |
+
padding: 1em;
|
| 27 |
+
margin-top: 1em;
|
| 28 |
+
max-height: 300px;
|
| 29 |
+
overflow-y: auto;
|
| 30 |
}
|