Stylizacja strony dokumenty, czyszczenie informacji z wyboru opcji do kontaktu po wyslaniu, odswieżeniu

This commit is contained in:
dm
2025-12-15 14:16:33 +01:00
parent 3cc0887dca
commit 3713d50bca
7 changed files with 189 additions and 174 deletions

30
src/styles/document.css Normal file
View File

@@ -0,0 +1,30 @@
.f-documents {
@apply max-w-7xl mx-auto px-4 py-10;
}
.f-documents-title {
@apply text-4xl md:text-5xl font-bold text-[--f-header];
}
.f-documents-grid {
@apply mt-8 grid gap-6 sm:grid-cols-2 lg:grid-cols-3;
}
.f-document-card {
@apply border border-[--f-border-color] bg-[--f-background] text-[--f-text]
p-5 shadow-sm transition hover:-translate-y-0.5 hover:shadow-md;
}
.f-document-title {
@apply text-2xl font-bold;
}
.f-document-intro {
@apply mt-3 text-xl opacity-80 leading-relaxed;
}
.f-document-link {
@apply mt-4 inline-block text-base opacity-70 text-[--f-link-text];
}