-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.css
More file actions
21 lines (18 loc) · 803 Bytes
/
Copy pathinput.css
File metadata and controls
21 lines (18 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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;
}
.title{
@apply font-inter font-semibold text-2xl leading-snug tracking-wide text-color-neutral-d-grey;
}
.btn-primary{
@apply bg-color-primary-shade-1 text-color-white rounded-sm md:rounded-md ease-in-out duration-300 hover:opacity-90 items-center flex flex-row py-3 px-6 cursor-pointer text-sm;
}
.paragraph {
@apply text-xs font-inter tracking-wide text-color-neutral-grey;
}
}