-
Notifications
You must be signed in to change notification settings - Fork 0
/
input.css
73 lines (56 loc) · 1.11 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
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,400;0,800;0,900;1,100;1,200;1,400;1,700;1,800;1,900&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
html{
@apply overflow-x-hidden scroll-smooth;
}
body{
@apply bg-green-950 text-white font-Jost tracking-wider;
}
section{
@apply py-20 md:py-28;
}
h1{
@apply text-3xl md:text-4xl xl:text-5xl font-bold;
}
h2{
@apply text-2xl md:text-3xl xl:text-4xl;
}
h3{
@apply text-xl md:text-2xl xl:text-3xl;
}
.nav-link{
@apply text-lg font-bold duration-300;
}
.nav-link:hover{
@apply text-yellow-500;
}
.active{
@apply text-yellow-500;
}
.title{
@apply text-yellow-500;
}
/* button */
.btn{
@apply border border-yellow-500 bg-yellow-500 rounded-md px-5 py-2 duration-300;
}
.btn span{
@apply font-bold;
}
.btn:hover{
@apply opacity-90;
}
.btn_outline{
@apply bg-transparent;
}
.btn_outline:hover{
@apply bg-yellow-500;
}
.popular__card:hover img{
@apply -top-8;
}
.swiper-pagination-bullet{
@apply bg-green-500 w-3 h-3;
}