Files
tps/core.css
Julien Calixte 6c9d7a6279 smaller gapes
2025-05-24 19:13:58 +02:00

49 lines
729 B
CSS

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif&family=Cutive+Mono&display=swap');
:root {
--primary-color: #002992;
--primary-color-no-focus: #abbbdf;
--color: white;
--font-size: 28px;
--min-font-size: 15px;
--gap: 1rem;
}
*:not(td):not(th) {
border-radius: 0.3rem;
}
body {
font-size: 28px;
font-family: 'Noto Serif', serif;
margin: 0;
}
header {
text-align: center;
color: var(--primary-color);
}
main {
display: flex;
flex-direction: column;
justify-content: center;
gap: 0;
padding: 1rem 1rem 0;
color: var(--color);
}
.meaning {
color: #9f9a9a;
font-weight: 100;
font-size: 1rem;
}
.meaning::before {
content: '(';
}
.meaning::after {
content: ')';
}