Compare commits

...

1 Commits

Author SHA1 Message Date
408fb2bbc2 Tailwind CSS eingebunden 2024-01-07 10:06:47 +01:00
4 changed files with 17 additions and 0 deletions

4
.gitignore vendored
View File

@ -2,3 +2,7 @@ tmp
test.sql test.sql
static/test.jpg static/test.jpg
static/test.mp4 static/test.mp4
node_modules
static/css/output.css
package.json
package-lock.json

3
static/css/input.css Normal file
View File

@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

9
tailwind.config.js Normal file
View File

@ -0,0 +1,9 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./templates/*.html"],
theme: {
extend: {},
},
plugins: [],
}

View File

@ -16,6 +16,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/static/css/style.css"> <link rel="stylesheet" href="/static/css/style.css">
<link rel="stylesheet" href="/static/css/output.css">
<title>Sicherheitsunterweisung</title> <title>Sicherheitsunterweisung</title>
</head> </head>