Initial commit

This commit is contained in:
Oliver Davies 2022-06-07 22:00:00 +01:00
commit bd3fce7e64
25 changed files with 888 additions and 0 deletions

18
assets/css/tailwind.css Normal file
View file

@ -0,0 +1,18 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
h1:after,
h1:before {
@apply text-3xl leading-[0] italic sm:text-5xl md:text-3xl lg:text-4xl xl:text-5xl;
}
h1:after {
content: "”";
}
h1:before {
content: "“";
}
}

33
assets/tailwind.config.js Normal file
View file

@ -0,0 +1,33 @@
module.exports = {
content: ["./templates/**/*.twig"],
theme: {
colors: {
blue: {
100: '#8cc4df',
200: '#2aaae1',
800: '#064871',
},
gray: '#666666',
secondary: '#064871',
white: '#FFFFFF',
red: 'lightcoral',
},
extend: {
fontFamily: {
sans: [
"proxima-nova",
"Proxima Nova",
"Open Sans",
"Gill Sans MT",
"Gill Sans",
'Corbel',
'Arial',
'sans-serif',
]
},
spacing: {
18: '4.5rem',
}
}
}
}