-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
86 lines (86 loc) · 3.14 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
81
82
83
84
85
86
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
"./node_modules/flowbite/**/*.js",
],
theme: {
extend: {
backgroundImage: {
"custom-pattern": "url('/public/img/pattern-bg.jpg')",
"custom-background":
"url('https://www.qwords.com/wp-content/themes/qwords/assets/images/shapes/bantuan.png')",
"Hero-background": "url('/public/img/hero-bg.jpg')",
},
animation: {
"anim-promo":
"promo-link 4s cubic-bezier(0.68, -0.6, 0.32, 1.6) infinite",
"promo-color":
"promo-color 4s cubic-bezier(0.68, -0.6, 0.32, 1.6) infinite",
tilt: "tilt 3s cubic-bezier(0.68, -0.6, 0.32, 1.6) infinite",
},
keyframes: {
"promo-link": {
"0%": {
content: "🎁 ",
opacity: 0,
transform: "translateX(0px)",
},
"50%": {
content: "🎁 ",
opacity: 1,
transform: "translateX(5px)",
},
"100%": {
content: "🎁 ",
opacity: 1,
transform: "translateX(0px)",
},
},
"promo-color": {
"0%": {
color: "black",
transform: "translateX(0px)",
},
"50%": {
color: "red",
transform: "translateX(5px)",
},
"100%": {
color: "black",
transform: "translateX(0px)",
},
},
tilt: {
"0%": {
transform: "rotate(0deg) scale(1) 55translateX(0px)",
},
"25%": {
transform: "rotate(0deg) scale(1) translateX(0px)",
},
"50%": {
transform: "rotate(15deg) scale(1.1) translateX(-30px)",
},
"55%": {
transform: "rotate(16deg) scale(1.1) translateX(-30px)",
},
"60%": {
transform: "rotate(14deg) scale(1.1) translateX(-30px)",
},
"65%": {
transform: "rotate(15deg) scale(1.1) translateX(-30px)",
},
"85%": {
transform: "rotate(0deg) scale(1) translateX(0px)",
},
100: {
transform: "rotate(0deg) scale(1) translateX(0px)",
},
},
},
},
},
plugins: [require("flowbite/plugin")],
};