-
Notifications
You must be signed in to change notification settings - Fork 10
/
input.css
85 lines (63 loc) · 2.45 KB
/
input.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
74
75
76
77
78
79
80
81
82
83
84
85
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
[x-cloak] {
display: none !important;
}
html {
@apply font-sans text-blue
}
.nav-link {
@apply font-medium text-lg text-gray hover:text-sky transition-colors ease-in-out duration-150 focus:outline-none
}
.nav-icon {
@apply text-2xl leading-none text-white hover:text-green transition-colors ease-in-out duration-150
}
.nav-icon-mb {
@apply text-4xl leading-none text-white hover:text-sky transition-colors ease-in-out duration-150
}
.footer-icon {
@apply text-3xl leading-none text-white hover:text-sky transition-colors ease-in-out duration-150
}
.h1 {
@apply lg:text-[52px] sm:text-4xl text-[32px] font-bold lg:leading-snug sm:leading-snug leading-snug
}
.h2 {
@apply sm:text-[44px] text-[28px] font-bold leading-10
}
.h3 {
@apply text-[32px] font-bold leading-10
}
.h4 {
@apply text-2xl font-bold leading-10
}
.h4-card {
@apply xl:text-2xl sm:text-xl text-2xl font-bold leading-10
}
.badge-purple {
@apply px-2.5 py-1 shrink-0 bg-purple-100 border border-purple text-center text-purple rounded-full font-semibold hover:bg-purple-700 hover:text-white hover:shadow-3 active:shadow-none active:bg-purple transition ease-in-out duration-150
}
.link-simple {
@apply hover:underline focus:outline-none
}
.link-rose {
@apply text-rose font-medium focus:outline-none transition-all ease-in-out duration-100 active:font-medium hover:underline
}
.link-purple {
@apply text-purple font-medium focus:outline-none transition-all ease-in-out duration-100 active:font-medium hover:underline
}
.link-sky {
@apply text-sky font-medium focus:outline-none transition-all ease-in-out duration-100 active:font-medium hover:underline
}
.link-green {
@apply text-green font-medium focus:outline-none transition-all ease-in-out duration-150 active:font-medium hover:underline
}
.footer-link {
@apply font-medium text-white text-sm group-hover:text-sky transition-colors ease-in-out duration-150
}
.footer-link-icon {
@apply shrink-0 text-white text-xl group-hover:text-sky transition-colors ease-in-out duration-150
}
}