-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
64 lines (64 loc) · 1.52 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
54
55
56
57
58
59
60
61
62
63
64
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./dist/*.html","./dist/js/*.js"],
theme: {
screens: {
'sm': '500px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
'2xl': '1536px',
},
backgroundImage: {
'Rectangle': "url('/src/assets/Rectangle3.png')",
'main' : "url('/src/assets/main.jpg')",
'img1' : "url('src/assets/img1.jpg')",
'cater1': "url('/src/assets/caterpic.jpg')",
'cater2': "url('/src/assets/caterimg2.jpg')",
'cater3': "url('/src/assets/caterimg3.jpg')"
},
keyframes: {
'0%': {transform:'scaleY(0)'},
'80%': {transform:'scaleY(1.2)'},
'100%': {transform:'scaleY(1)'}
},
animation: {
'open-menu': 'open-menu 0.5s ease-in-out forwards',
},
zIndex: {
md : '100',
lg : '1000',
xl : '9999',
'2xl': '99999'
},
fontFamily: {
mont: ['montserrat', 'sans-serif'],
pop:['poppins','sans-serif'],
},
fontSize: {
sm: ['14px', '20px'],
base: ['16px', '24px'],
lg: ['20px', '28px'],
xl: ['24px', '32px'],
'4xl':['36px','47px'],
'5xl':['48px','60px'],
'6xl': ['60px','71px'],
'7xl': ['72px','95px'],
'8xl': ['96px','127px'],
'9xl': ['128px'],
},
extend: {
colors: {
transparent : 'transparent'
},
margin: {
'80px' : '80px',
'90px' :'90px',
'100px' : '100px'
}
},
},
plugins: [
require('tailwind-scrollbar'),
],
}