-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
70 lines (70 loc) · 1.44 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
theme: {
extend: {
animation: {
slideshow1: "appear1 13s linear infinite",
slideshow2: "appear2 13s linear infinite",
slideshow3: "appear3 13s linear infinite",
slideshow4: "appear4 13s linear infinite",
},
keyframes: {
appear1: {
"0%, 14%": {
opacity: 1,
},
"15%, 88%": {
opacity: 0,
},
"89%, 100%": {
opacity: 1
}
},
appear2: {
"13%, 40%": {
opacity: 1,
},
"41%, 100%": {
opacity: 0,
},
"0%, 12%": {
opacity: 0,
},
},
appear3: {
"0%, 38%": {
opacity: 0,
},
"39%, 66%": {
opacity: 1,
},
"67%, 100%": {
opacity: 0,
},
},
appear4: {
"0%, 64%": {
opacity: 0,
},
"65%, 90%": {
opacity: 1,
},
"91%, 100%": {
opacity: 0
}
},
},
fontFamily: {
sans: ["SNG Sans"],
},
},
},
plugins: [],
safelist: [
'animate-slideshow1',
'animate-slideshow2',
'animate-slideshow3',
'animate-slideshow4',
]
};