Initial commit

This commit is contained in:
marc
2025-03-09 20:00:54 +01:00
commit efd26ce19d
118 changed files with 78086 additions and 0 deletions

34
tailwind.config.js Normal file
View File

@@ -0,0 +1,34 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./folkugat_web/assets/templates/**/*.{html, jinja}"],
theme: {
extend: {
colors: {
'brown': '#3e3834',
'beige': '#b27c09',
},
animation: {
'fade-in-one': 'fadeIn 1s ease-in 0.3s 1 normal forwards',
'fade-in-two': 'fadeIn 1s ease-in 0.6s 1 normal forwards',
'fade-in-three': 'fadeIn 1s ease-in 0.9s 1 normal forwards',
'grow': 'grow 0.3s ease-in 0s 1 normal forwards',
'marquee': 'marquee 25s linear infinite',
},
keyframes: {
fadeIn: {
'0%': { opacity: 0 },
'100%': { opacity: 1 },
},
grow: {
'0%': { width: '0%' },
'100%': { width: '100%' },
},
marquee: {
'0%': { transform: 'translateX(0%)' },
'100%': { transform: 'translateX(-100%)' },
}
},
},
},
plugins: [],
}