2022-04-28 09:58:07 +02:00
|
|
|
@import "tailwindcss/base";
|
|
|
|
@import "tailwindcss/components";
|
|
|
|
@import "tailwindcss/utilities";
|
|
|
|
|
2023-11-07 08:52:09 +01:00
|
|
|
@font-face {
|
|
|
|
font-family: 'Inter var';
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 100 900;
|
|
|
|
font-display: swap;
|
|
|
|
src: url('/fonts/Inter-roman.var.woff2?v=3.19') format('woff2');
|
|
|
|
font-named-instance: 'Regular';
|
2022-04-28 09:58:07 +02:00
|
|
|
}
|
|
|
|
|
2023-11-07 08:52:09 +01:00
|
|
|
@font-face {
|
|
|
|
font-family: 'Inter var';
|
|
|
|
font-style: italic;
|
|
|
|
font-weight: 100 900;
|
|
|
|
font-display: swap;
|
|
|
|
src: url('/fonts/Inter-italic.var.woff2?v=3.19') format('woff2');
|
|
|
|
font-named-instance: 'Italic';
|
2022-04-28 09:58:07 +02:00
|
|
|
}
|
|
|
|
|
2023-11-07 08:52:09 +01:00
|
|
|
html { @apply bg-white; }
|
2022-04-28 09:58:07 +02:00
|
|
|
|
2023-11-07 08:52:09 +01:00
|
|
|
body {
|
|
|
|
@apply font-sans text-black-olive;
|
|
|
|
@apply grid grid-rows-[min-content_1fr_min-content];
|
2022-04-28 09:58:07 +02:00
|
|
|
}
|
|
|
|
|
2023-11-07 08:52:09 +01:00
|
|
|
section p { @apply mb-4; }
|
|
|
|
strong { @apply font-semibold; }
|
2022-04-28 09:58:07 +02:00
|
|
|
|
2023-11-07 08:52:09 +01:00
|
|
|
.dropdown .btn { @apply normal-case text-base; }
|
|
|
|
header { @apply flex justify-end; }
|
2022-04-28 09:58:07 +02:00
|
|
|
|
2023-11-07 08:52:09 +01:00
|
|
|
header h1 { @apply font-normal text-lg m-2; }
|
2022-04-28 09:58:07 +02:00
|
|
|
|
2023-11-07 08:52:09 +01:00
|
|
|
section h2 {
|
|
|
|
@apply font-bold text-4xl;
|
|
|
|
@apply mb-8;
|
2022-04-28 09:58:07 +02:00
|
|
|
}
|
|
|
|
|
2023-11-07 08:52:09 +01:00
|
|
|
.projects h3 { @apply font-semibold text-lg; }
|
|
|
|
.project { @apply mb-4; }
|
2022-04-28 09:58:07 +02:00
|
|
|
|
2023-11-07 08:52:09 +01:00
|
|
|
.icon-link { @apply flex items-start gap-1; }
|