This repository has been archived on 2026-02-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
serengo/src/app.css
2025-10-02 15:49:43 +02:00

55 lines
683 B
CSS

@font-face {
font-family: 'Washington';
src: url('/fonts/Washington.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family:
system-ui,
-apple-system,
BlinkMacSystemFont,
'Segoe UI',
Roboto,
sans-serif;
line-height: 1.5;
background-color: #f8f8f8;
color: #333;
margin: 0 auto;
}
h1 {
font-family: 'Washington', serif;
font-weight: normal;
}
h2,
h3,
h4,
h5,
h6 {
font-family: 'Times New Roman', Times, serif;
font-weight: normal;
}
button {
cursor: pointer;
font-family: inherit;
}
input {
font-family: inherit;
}
a {
color: inherit;
text-decoration: none;
}