-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.css
52 lines (49 loc) · 1.19 KB
/
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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components{
h1{
@apply text-4xl md:text-6xl font-bold;
}
h2{
@apply text-2xl md:text-4xl font-semibold;
}
h3{
@apply text-2xl md:text-3xl font-semibold;
}
h4{
@apply text-2xl font-semibold;
}
p{
@apply text-xl font-normal;
}
.main-title{
@apply text-6xl md:text-9xl;
}
.text-btn-style{
@apply text-base font-medium capitalize no-underline;
}
.bg-banner-bg{
}
.bg-mountain-bg{
@apply bg-size-100 bg-bottom bg-no-repeat;
}
.button-style{
@apply bg-light-blue text-base text-white no-underline p-4;
}
.blue-gr-box{
@apply bg-gradient-to-b from-light-blue to-dark_blue rounded-sm border border-light-blue p-4;
}
.footer-bg{
@apply bg-gradient-to-b from-light-blue to-dark_blue rounded-sm border border-light-blue;
}
.bg-hero-img-funeral {
@apply bg-no-repeat bg-cover
}
.icon-btn-list{
@apply absolute right-0 top-2 md:relative md:top-12;
}
.icon-btn-list li{
@apply float-left md:float-none px-1 md:px-0;
}
}