-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.css
75 lines (52 loc) · 1000 Bytes
/
tailwind.css
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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;700&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--container-padding-x: 3%;
--section-padding-y: 2rem;
}
* {
box-sizing: border-box;
}
body {
@apply text-base;
}
h1,h2,h3,h4,h5 {
@apply font-bold;
}
h1, .h1 {
@apply text-4xl;
}
h2, .h2 {
@apply text-3xl;
}
h3, .h3 {
@apply text-2xl;
}
h4, .h4 {
@apply text-xl;
}
h5, .h5 {
@apply text-base;
}
small {
@apply text-sm;
}
a {
@apply break-all;
}
}
@layer utilities {
/*!* Colors *!*/
/*!* Layout *!*/
.container {
padding-left: var(--container-padding-x);
padding-right: var(--container-padding-x);
max-width: 100%;
}
/*!* Buttons *!*/
/*!* List *!*/
/* !* Breadcrumb *!*/
}