website-cb-mirror/src/app.css
Sofía Aritz 77739d387f Add code styling and improve loading size
- Added Jetbrains Mono font
- Added styling for `code` and `hr` tags
- Added `background.jpg` which is 409KB instead of the old `background.png`'s 4MB
2023-01-06 23:44:39 +01:00

41 lines
776 B
CSS

:root {
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 24px;
font-weight: 400;
min-height: 100%;
color: rgba(255, 255, 255, 0.9);
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.25)), url("/assets/background.jpg");
background-color: #221130;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
}
a {
color: #e74cac;
}
code {
font-family: "JetBrains Mono", monospace;
padding: 2px 3px;
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}
hr {
color: #bebebe;
}
* {
font-family: Rubik, sans-serif;
}