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
|
|
|
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
|
|
|
}
|
|
|
|
|
2024-06-10 22:09:30 +02:00
|
|
|
header .navbar { @apply absolute w-full pr-10 flex justify-end; }
|
|
|
|
|
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
|
|
|
|
2024-06-10 22:09:30 +02:00
|
|
|
em { @apply font-semibold not-italic; }
|
2022-04-28 09:58:07 +02:00
|
|
|
|
2024-06-10 22:09:30 +02:00
|
|
|
ul { @apply pl-4; }
|
|
|
|
li { list-style-type: '- '; }
|
|
|
|
|
|
|
|
.dropdown .btn { @apply normal-case text-base; }
|
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
|
|
|
|
2024-06-10 22:09:30 +02:00
|
|
|
.icon-link { @apply flex items-start gap-1; }
|