-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput.css
57 lines (46 loc) · 1.22 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
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Oswald:wght@200..700&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
html {
@apply scroll-smooth;
}
body {
@apply text-whiteColor bg-primaryColor tracking-wider dark:bg-darkColor;
}
section {
@apply pt-16 pb-4 md:pt-20;
}
}
@layer components {
.btn {
@apply inline-block text-sm py-3 px-8 capitalize text-center cursor-pointer rounded-md ease-linear duration-200;
}
.btn-primary {
@apply text-blackColor bg-secondaryColor hover:opacity-75;
}
}
@layer utilities {
.home__tilte,
.card__title,
.section__title {
@apply text-4xl font-oswald font-bold uppercase lg:text-6xl;
}
.separator {
@apply w-28 h-[2px] bg-secondaryColor my-5;
}
.paragraph {
@apply text-paragraphColor text-xs leading-5;
}
.section__title {
@apply text-3xl;
}
.card__title {
@apply text-xl;
}
}
.tabs_wrap ul li:hover,
.tabs_wrap ul li.active {
@apply bg-secondaryColor text-blackColor;
}