-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.css
More file actions
64 lines (61 loc) · 972 Bytes
/
Copy pathtailwind.css
File metadata and controls
64 lines (61 loc) · 972 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Saira+Extra+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
.cwc-full {
@apply w-full h-full;
}
h1,
h2,
h3,
h4,
h5,
h6 {
@apply font-extra-condensed font-bold;
}
a {
@apply font-extra-condensed tracking-wider;
}
/*Components*/
.btn {
@apply uppercase text-xs px-4 py-2 rounded-full border;
}
@screen sm {
.btn {
@apply text-sm px-10 py-3;
}
}
@screen md {
.btn {
@apply px-16;
}
}
@screen lg {
.btn {
@apply px-10;
}
}
/*Header Nav*/
#mainMenu li a {
@apply py-4;
}
@screen md {
#mainMenu li a {
@apply py-0;
}
#mainMenu li {
@apply mr-4;
}
#mainMenu li:last-child {
@apply mr-0;
}
}
/*footer*/
footer ul li h4 {
@apply text-2xl mb-2 leading-none;
}
@screen lg {
footer ul li h4 {
@apply text-lg;
}
}