-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
125 lines (122 loc) · 2.48 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./main/templates/*.html"],
theme: {
screens: {
1180:"1180px",
960: "960px",
880: "880px",
md: "800px",
725: "725px",
sm: "640px",
xsm: "500px",
},
colors: {
'redC':"#ff3131",
'black': "#000000",
'blueC': "#0F3FA2",
'orangeC': "#F16F43",
'linkC': "#1a0dab",
'grayC': '#868686',
},
extend: {
borderWidth: {
0.5: "0.5px",
},
space: {
'5%': '5%',
},
inset: {
"1%": "1%",
"2%": "2%",
"5%": "5%",
"7%": "7%",
"12%": "12%",
"20%": "20%",
"25%": "25%",
"50%": "50%",
},
height: {
"15":"4rem",
"10%": "10%",
"50%": "50%",
"70%": "70%",
"75%": "75%",
"80%": "80%",
"90%": "90%",
},
width: {
"15":"4rem",
"4.25rem":"4.25rem",
"17rem":"17rem",
"22rem":"22rem",
"26rem":"26rem",
"34rem":"34rem",
"3%": "3%",
"10%": "10%",
"12%": "12%",
"20%": "20%",
"22%": "22%",
"25%": "25%",
"30%": "30%",
"33%": "33%",
"40%": "40%",
"47.5%": "47.5%",
"57%": "57%",
"50%": "50%",
"60%": "60%",
"70%": "70%",
"75%": "75%",
"80%": "80%",
"85%": "85%",
"90%": "90%",
"95%": "95%",
"98%": "98%",
"100%": "100%",
},
margin:{
'1%': '1%',
'2%':'2%',
'3%': '3%',
"4%": "4%",
"4.5%": "4.5%",
"5%":"5%",
"7.5%": "7.5%",
"10%": "10%",
"15%": "15%",
"20%": "20%",
"25%": "25%",
"30%": "30%",
"35%": "35%",
"40%": "40%",
"50%": "50%",
'9px': '9px',
'0.65rem': '0.65rem',
'0.7rem': '0.7rem',
"1.09rem": "1.09rem",
"1.33rem": "1.33rem",
"1.87rem": "1.87rem",
"2.25rem": "2.25rem",
"2.6rem": "2.6rem",
"3.75rem": "3.75rem",
"13px":"13px",
"51px":"51px",
},
padding:{
"1%": "1%",
'9px': '9px',
},
fontSize: {
"12rem": "12rem",
},
colors:{
"gradient":"#003764",
"main": "white",
"antimain": "#1a1a1d",
},maxHeight: {
'50%': '50%',
}
},
},
plugins: [],
}