build: switch to local tailwind build and update docker static mounts

This commit is contained in:
Luca Sacchi Ricciardi
2026-04-23 18:18:31 +02:00
parent f881c2b993
commit 14941aa6c8
9 changed files with 1093 additions and 17 deletions
+13 -16
View File
@@ -10,22 +10,7 @@
content="Directory moderna dei servizi pubblici sul dominio home.lucasacchi.net"
/>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
display: ["Space Grotesk", "ui-sans-serif", "system-ui"],
body: ["Manrope", "ui-sans-serif", "system-ui"]
},
boxShadow: {
glow: "0 0 0 1px rgba(255,255,255,.08), 0 12px 30px rgba(8, 20, 40, .28)"
}
}
}
};
</script>
<link rel="stylesheet" href="./tailwind.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
@@ -71,6 +56,18 @@
.reveal {
animation: rise 0.45s ease-out both;
}
.font-display {
font-family: "Space Grotesk", ui-sans-serif, system-ui;
}
.font-body {
font-family: "Manrope", ui-sans-serif, system-ui;
}
.shadow-glow {
box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 12px 30px rgba(8, 20, 40, 0.28);
}
</style>
</head>