-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
59 lines (59 loc) · 1.53 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"*.{html,js}",
"**/*.{html,js}",
"src/**/*.{html,js}",
"src/*.{html,js}",
],
theme: {
extend: {
keyframes: {
fade: {
'0%': { opacity: '0' },
'100%': { opacity: '1' }
},
slowfade: {
'0%, 50%': { opacity: '0' },
'100%': { opacity: '1' }
},
diagonal: {
'0%': { 'background-position': '0px 720px' },
'50%': { 'background-position': '720px 0px'},
'100%': { 'background-position': '0px 720px' }
},
pop: {
'0%': { transform: 'scaleX(1) scaleY(1)' },
'25%': { transform: 'scaleX(1.05) scaleY(1.05)' },
'50%': { transform: 'scaleX(1) scaleY(1)' },
'100%': { transform: 'scaleX(1) scaleY(1)' },
},
glow: {
'0%' : { boxShadow: '0 0 0.5rem #fff' },
'50%': { boxShadow: '0 0 1rem #fff' },
'100%': { boxShadow: '0 0 0.5rem #fff' },
}
},
animation: {
fade: 'fade 2s linear forwards',
slowfade: 'slowfade 4s linear forwards',
diagonal: 'diagonal 45s ease-in-out infinite',
pop: 'pop 3s ease-out infinite',
glow: 'glow 3s ease-in-out infinite',
},
height: {
'50': "50px",
},
spacing: {
'50': "50px",
},
fontFamily: {
'inter': ["Inter", "sans-serif"],
},
maxWidth: {
'7/8': '87.5%',
}
},
plugins: [],
},
};