new termscp site

This commit is contained in:
veeso
2023-07-05 12:33:17 +02:00
parent 00a6c53178
commit b7d4c68ebe
25 changed files with 996 additions and 1224 deletions

26
tailwind.config.js Normal file
View File

@@ -0,0 +1,26 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./site/**/*.{html,js}"],
darkMode: "class",
theme: {
screens: {
sm: { max: "640px" },
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1536px",
},
extend: {
colors: {
brand: "#31363b",
},
fontSize: {
xl: "1.5rem",
"2xl": "2rem",
"3xl": "3.5rem",
"4xl": "7rem",
},
},
},
plugins: [],
};