Initial commit

This commit is contained in:
Simon Martens
2023-01-30 11:49:15 +01:00
commit 54074f8ad7
60 changed files with 4293 additions and 0 deletions

27
tailwind.config.js Normal file
View File

@@ -0,0 +1,27 @@
module.exports = {
content: [
"./index.html",
"./kolloquien.html",
"./acta-baende.html",
"./studien.html",
"./kontakt.html",
"./datenschutzerklaerung.html",
"./main.js",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
fontFamily: {
sans: ['Biolinum G', 'Biolinum', 'sans-serif'],
serif: ['Libertine G', 'Libertine', 'serif'],
},
screens: {
'sm': '640px',
'md': '1024px',
'lg': '1344px',
'xl': '1440px',
'2xl': '1680px',
},
extend: {},
},
plugins: [],
}