Files
homepage/assets/css/app.css

33 lines
675 B
CSS
Raw Normal View History

@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
2023-11-07 08:52:09 +01:00
html { @apply bg-white; }
2023-11-07 08:52:09 +01:00
body {
@apply font-sans text-black-olive;
@apply grid grid-rows-[min-content_1fr_min-content];
}
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; }
2024-06-10 22:09:30 +02:00
em { @apply font-semibold not-italic; }
2024-06-10 22:09:30 +02:00
ul { @apply pl-4; }
li { list-style-type: '- '; }
.dropdown .btn { @apply normal-case text-base; }
2023-11-07 08:52:09 +01:00
section h2 {
@apply font-bold text-4xl;
@apply mb-8;
}
2023-11-07 08:52:09 +01:00
.projects h3 { @apply font-semibold text-lg; }
.project { @apply mb-4; }
2024-06-10 22:09:30 +02:00
.icon-link { @apply flex items-start gap-1; }