-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
50 lines (36 loc) · 1018 Bytes
/
index.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
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800&display=swap');
body {
font-family: 'Rubik', sans-serif;
}
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
.wrap {
@apply w-full mx-auto px-4 max-w-[800px];
}
.h1 {
@apply text-[25px] leading-8 font-semibold md:text-3xl md:font-medium;
}
.h3 {
@apply text-[17px] leading-[21px] font-bold md:text-xl md:font-medium;
}
.p {
@apply text-[14px] leading-[17px] opacity-70 md:text-lg;
}
.yellowbtn {
@apply text-sm font-bold py-3 text-darkgrey bg-yellow rounded-3xl text-center px-5 md:text-lg;
}
.whitebtn {
@apply text-sm font-bold py-3 text-darkgrey bg-white rounded-3xl text-center px-5 md:text-lg;
}
}
.ReactCollapse--collapse {
transition: height 300ms;
}
.swiper-pagination-bullet {
background-color: white;
}
.swiper-pagination-bullet-active {
background-color: white;
}