-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
80 lines (80 loc) · 2.09 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
module.exports = {
purge: [
'./resources/views/**/*.edge',
'./resources/css/**/*.css',
'./resources/js/**/*.js',
'./resources/js/**/*.ts',
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
spacing: {
110: '28rem',
},
backgroundImage: {
'dungeons-and-dragons': "url('../images/dungeons-and-dragons.jpg')",
'vampire-the-mascarade': "url('../images/vampire-the-mascarade.jpeg')",
'al-rpg-club': "url('../images/al-rpg-club.jpg')",
'cyberpunk': "url('../images/cyberpunk.jpg')",
'logo': "url('../images/pp.jpg')",
'tabuleiro-rpg': "url('../images/tabuleiro-rpg.jpg')",
'main-cover': "url('../images/cover-rpg.jpg')",
'main-cover-gradient':
"linear-gradient(0.03deg, #111827, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.75), rgba(17, 24, 39, 0.4), rgba(17, 24, 39, 0.1), rgba(17, 24, 39, 0)),url('../images/cover-rpg.jpg')",
},
fontSize: {
'2xs': '10px',
'3xs': '9px',
'4xs': '5px',
},
blur: {
sm: '2px',
},
keyframes: {
'slide-from-right': {
'0%': {
'transform': 'translateX(100%)',
'opacity': '0.2',
'animation-timing-function': 'cubic-bezier(0.8, 0, 1, 1)',
},
'100%': {
'transform': 'translateX(0)',
'opacity': '1',
'animation-timing-function': 'cubic-bezier(0, 0, 0.2, 1)',
},
},
},
animation: {
'slide-from-right': 'slide-from-right 0.5s ease-in-out',
},
width: {
'68': '280px',
'83': '340px',
'75': '300px',
'100': '430px',
'18': '67px',
'130': '550px',
'200': '700px',
'230': '850px',
'11/14': '86%',
},
height: {
30: '121px',
22: '88px',
66: '270px',
76: '295px',
},
minHeight: {
60: '230px',
},
},
fontFamily: {
title: 'Cinzel',
text: 'Roboto',
},
},
variants: {
extend: {},
},
plugins: [],
}