Spaces:
Runtime error
Runtime error
Update index.css
Browse files- frontend/src/index.css +12 -5
frontend/src/index.css
CHANGED
|
@@ -1,10 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
body {
|
| 2 |
margin: 0;
|
| 3 |
-
font-family: -
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
-
|
| 7 |
-
-
|
|
|
|
| 8 |
}
|
| 9 |
|
| 10 |
code {
|
|
|
|
| 1 |
+
* {
|
| 2 |
+
margin: 0;
|
| 3 |
+
padding: 0;
|
| 4 |
+
box-sizing: border-box;
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
body {
|
| 8 |
margin: 0;
|
| 9 |
+
font-family: 'Open-Sans',sans-serif;
|
| 10 |
+
color: #343a4a;
|
| 11 |
+
display: flex;
|
| 12 |
+
justify-content: center;
|
| 13 |
+
min-height: 100vh;
|
| 14 |
+
padding: 80px;
|
| 15 |
}
|
| 16 |
|
| 17 |
code {
|