Spaces:
Sleeping
Sleeping
Update style.css
Browse files
style.css
CHANGED
|
@@ -1,28 +1,25 @@
|
|
| 1 |
body {
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
| 4 |
}
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
}
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
.card {
|
| 19 |
-
max-width: 620px;
|
| 20 |
-
margin: 0 auto;
|
| 21 |
-
padding: 16px;
|
| 22 |
-
border: 1px solid lightgray;
|
| 23 |
-
border-radius: 16px;
|
| 24 |
-
}
|
| 25 |
-
|
| 26 |
-
.card p:last-child {
|
| 27 |
-
margin-bottom: 0;
|
| 28 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
body {
|
| 2 |
+
font-family: 'Segoe UI', sans-serif;
|
| 3 |
+
background: #101010;
|
| 4 |
+
color: #fff;
|
| 5 |
+
margin: 0;
|
| 6 |
+
padding: 1.5em;
|
| 7 |
}
|
| 8 |
+
header {
|
| 9 |
+
text-align: center;
|
| 10 |
+
background: #1e1e1e;
|
| 11 |
+
padding: 2em;
|
| 12 |
}
|
| 13 |
+
button {
|
| 14 |
+
padding: 10px 20px;
|
| 15 |
+
font-size: 1em;
|
| 16 |
+
background-color: #0ff;
|
| 17 |
+
color: black;
|
| 18 |
+
border: none;
|
| 19 |
+
border-radius: 4px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
}
|
| 21 |
+
pre {
|
| 22 |
+
background: #222;
|
| 23 |
+
padding: 1em;
|
| 24 |
+
font-family: monospace;
|
| 25 |
+
}
|