-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
33 lines (31 loc) · 1.08 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Inter:[email protected]&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
html,
body {
overflow-x: hidden;
}
body {
@apply font-body;
}
h1, h2, h3 {
@apply font-display text-gray-800 font-medium;
}
.container {
@apply px-6 py-12 max-w-7xl mt-16 mx-auto lg:px-8 lg:mt-10;
}
.anchor-hover {
@apply border-b border-dotted border-y-gray-300 hover:border-solid hover:border-gray-500;
}
.gradient-hover-outer {
@apply p-[1px] bg-slate-200 hover:bg-gradient-to-br hover:from-red-200 hover:via-purple-200 hover:to-yellow-200;
}
.gradient-hover-inner {
@apply bg-slate-50 group-hover:bg-gradient-to-br group-hover:from-red-50 group-hover:via-purple-50 group-hover:to-yellow-50;
}
.h2-style {
@apply text-5xl leading-normal sm:font-semibold max-w-2xl;
}
}