cologne-furmeet-reg/src/app.css
Leon Grünewald 5f12ccfa34 Inital commit
2025-02-05 05:20:49 +01:00

60 lines
1.2 KiB
CSS

/* inter-regular - latin */
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Inter';
font-style: normal;
font-weight: 400;
src: url('/fonts/inter-v18-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
* {
--color-primary-a0: #ffffff;
--color-primary-a10: #e1e6fe;
--color-primary-a20: #c2cdfd;
--color-primary-a30: #a1b5fb;
--color-primary-a40: #7d9df9;
--color-primary-a50: #5087f6;
--color-primary-a60: #436bc0;
--color-primary-a70: #364f8c;
--color-primary-a80: #28365c;
--color-primary-a90: #191e2f;
--color-primary-a100: #000000;
--text-color: black;
box-sizing: border-box;
font-size: inherit;
}
html, body {
position: relative;
margin: 0;
padding: 0;
background-color: white;
font-size: 1rem;
}
p, a, h1, h2, h3, h4, h5, h6 {
font-family: Inter, Arial, sans-serif;
color: var(--text-color);
}
h1, h2, h3, h4, h5, h6 {
font-weight: bold;
}
p {
line-height: 1.35rem;
}
h1 {
font-size: 1.5rem;
}
h2 {
font-size: 1.2rem;
}
svg {
max-width: 100%;
height: auto;
}