Spaces:
Running
Running
font
Browse files- src/app.css +1 -0
- src/routes/+page.svelte +13 -0
src/app.css
CHANGED
|
@@ -28,6 +28,7 @@ body {
|
|
| 28 |
place-items: center;
|
| 29 |
min-width: 320px;
|
| 30 |
min-height: 100vh;
|
|
|
|
| 31 |
}
|
| 32 |
|
| 33 |
h1 {
|
|
|
|
| 28 |
place-items: center;
|
| 29 |
min-width: 320px;
|
| 30 |
min-height: 100vh;
|
| 31 |
+
font-family: Avenir, Helvetica, Arial, sans-serif;
|
| 32 |
}
|
| 33 |
|
| 34 |
h1 {
|
src/routes/+page.svelte
CHANGED
|
@@ -243,6 +243,19 @@ Keep your responses concise and helpful. Answer questions about the data above.`
|
|
| 243 |
background-color: #f8f9fa;
|
| 244 |
}
|
| 245 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 246 |
h2 {
|
| 247 |
margin: 0 0 20px 0;
|
| 248 |
color: #333;
|
|
|
|
| 243 |
background-color: #f8f9fa;
|
| 244 |
}
|
| 245 |
|
| 246 |
+
.page-header {
|
| 247 |
+
max-width: 1200px;
|
| 248 |
+
margin: 0 auto;
|
| 249 |
+
padding: 24px 24px 0 24px;
|
| 250 |
+
}
|
| 251 |
+
|
| 252 |
+
.page-header h1 {
|
| 253 |
+
margin: 0;
|
| 254 |
+
font-size: 28px;
|
| 255 |
+
letter-spacing: -0.02em;
|
| 256 |
+
color: #0f172a;
|
| 257 |
+
}
|
| 258 |
+
|
| 259 |
h2 {
|
| 260 |
margin: 0 0 20px 0;
|
| 261 |
color: #333;
|