43 lines
603 B
CSS
43 lines
603 B
CSS
@import 'tailwindcss';
|
|
@plugin "@tailwindcss/typography";
|
|
|
|
@plugin "daisyui" {
|
|
/* themes: light --default, dark --prefersdark; */
|
|
themes: light;
|
|
}
|
|
|
|
*:not(td):not(th) {
|
|
border-radius: 0.5rem;
|
|
}
|
|
|
|
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;
|
|
margin: 1rem 1rem 0;
|
|
color: var(--color);
|
|
}
|
|
|
|
h1 {
|
|
margin: 0 0 0.5rem;
|
|
}
|
|
|
|
article {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin: auto;
|
|
}
|