-
Notifications
You must be signed in to change notification settings - Fork 5
/
tailwind.config.js
68 lines (68 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
65
66
67
68
module.exports = {
important: true,
content: ["./components/**/*.{js,ts,jsx,tsx}", './pages/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
ais: {
black: '#1F1E1E',
'blue-gray': '#E1E8ED',
'light-blue': '#11BBFD',
'dark-blue': '#4565B8',
'light-gray': '#f5f5f5',
'dark-gray': '#444444',
'indigo': '#24314D',
'hover-indigo': '#374b75',
white: '#fafafa',
navy: '#202042',
gray: '#B8B8B8',
},
},
backgroundSize: {
fill:'100% 100%',
'extra-fill':'150% 150%'
},
screens: {
'med':'832px'
}
},
css: {
container: {
'display': 'flex',
},
card: {
'position': 'relative',
'width': '282px',
'height': '426.08px',
'margin': '10px',
'perspective': '1000px',
front: {
'position': 'absolute',
'width': '100%',
'height': '100%',
'backface-visibility': 'hidden',
},
back: {
'position': 'absolute',
'width': '100%',
'height': '100%',
'backface-visibility': 'hidden',
},
front: {
//'transform': 'rotateX(0deg)',
},
back: {
//'transform': 'rotateX(0deg)',
//'filter': 'invert(100%)',
},
flip: {
//'transform': 'rotateX(0deg)',
}
},
},
},
variants: {
extend: {},
},
plugins: [],
};