-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
53 lines (53 loc) · 1.35 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
screens: {
xs: "300px",
sm: "520px",
md: "850px",
lg: "1100px",
xl: "1440px",
},
extend: {
backgroundImage: {
backgroundGif: "url('./assets/confetti.webp')",
backgroundContact: "url('./assets/contact.webp')",
backgroundSchool: "url('./assets/school.webp')",
backgroundCollege: "url('./assets/college.webp')",
},
animation: {
myAnim: "myAnimation 0.7s ease 0s 1 normal forwards",
preloader: "preloader 2.5s normal forwards",
},
spacing: {
128: "3rem",
256: "4rem",
512: "6.5rem",
1024: "30rem",
2048:"35rem"
},
boxShadow: {
customShadow: "0 3px 8px rgba(33, 33, 33, 0.2)",
},
keyframes: {
myAnimation: {
"0%, 100%": { transform: "translateX(0)" },
"20%, 60%": { transform: "translateX(-8px)" },
"40%, 80%": { transform: "translateX(8px)" },
},
preloader: {
"0%": { width: "0" },
"100%": { width: "100%" },
},
},
},
fontFamily: {
sans: ["arial", "system-ui"],
serif: ["ui-serif", "Georgia"],
display: ["Oswald"],
google: ["GOOGLE"],
},
},
plugins: [],
};