-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
80 lines (79 loc) · 2.24 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
screens: {
'Ltablet': '1101rem',
},
fontFamily: {
primary:['Dancing Script', "cursive"],
secondary:['Prompt', 'sans-serif']
},
fontSize:{
xxs: ['0.5rem', '1rem'],
},
animation: {
fadein: "fadein 2s ease-in-out",
fadein3: "fadein 2s ease-in-out animation-delay:1",
fadein5sec: "fadein5sec 2s ease-in",
translateyoval: "translateyoval 1s ease-out",
translateyoval2: "translateyoval2 1s ease-out",
wipedown:"wipedown 1s ease-out",
blob: "blob 7s infinite",
bubbleMove: "bubbleMove 4s cubic-bezier(0.42, 0, 0.58, 1) infinite",
},
keyframes: {
blob: {
"0%": {
transform: "translate(0px, 0px) scale(1)",
},
"33%": {
transform: "translate(30px, -50px) scale(1.1)",
},
"66%": {
transform: "translate(-20px, 20px) scale(0.9)",
},
"100%": {
transform: "tranlate(0px, 0px) scale(1)",
},
},
fadein: {
'0%': { opacity: 0 },
'100%': { opacity: 1 }
},
fadein5sec: {
'0%': { opacity: 0 },
'100%': { opacity: 1 }
},
translateyoval: {
"0%": { transform: 'translateY(-45rem) rotate(-12deg)' },
"100%": { transform: 'translateY(-16rem) rotate(-12deg)' }
},
translateyoval2: {
"0%": { transform: 'translateY(-45rem) ' },
"100%": { transform: 'translateY(-14.5rem) ' }
},
wipedown:{
'0%': {
height:'0'
},
'100%': {
height:'100%'
}
},
bubbleMove: {
"0%": { transform: "translate(-1rem, 0)" },
"25%": { transform: "translate(-1rem, 1rem)" },
"50%": { transform: "translate(1rem, 1rem)"} ,
"75%": { transform: "translate(1rem, -1rem)"} ,
"100%": { transform: "translate(-1rem, 0)"},
}
}
},
},
plugins: [require('tailwind-scrollbar')],
}