2024-07-18 19:53:28 -04:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
2024-07-19 03:11:14 -04:00
|
|
|
|
2024-08-07 22:48:19 -04:00
|
|
|
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
|
|
|
|
|
|
|
|
.inter-med {
|
|
|
|
font-family: "Inter", sans-serif;
|
|
|
|
font-optical-sizing: auto;
|
|
|
|
font-weight: 400;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
html,
|
|
|
|
body {
|
2024-09-07 01:17:51 -04:00
|
|
|
@apply text-neutral-200 bg-neutral-900;
|
2024-08-07 22:48:19 -04:00
|
|
|
font-family: "Inter", sans-serif;
|
|
|
|
font-optical-sizing: auto;
|
|
|
|
font-weight: 400;
|
|
|
|
font-style: normal;
|
|
|
|
font-stretch: condensed;
|
|
|
|
}
|
2024-08-12 18:36:26 -04:00
|
|
|
|
2024-07-19 03:11:14 -04:00
|
|
|
button {
|
2024-08-07 22:48:19 -04:00
|
|
|
@apply bg-neutral-600
|
2024-07-19 03:11:14 -04:00
|
|
|
border-b-4
|
2024-08-07 22:48:19 -04:00
|
|
|
border-neutral-800
|
2024-07-19 03:11:14 -04:00
|
|
|
font-bold
|
2024-08-07 22:48:19 -04:00
|
|
|
hover:bg-neutral-700
|
|
|
|
hover:border-neutral-500
|
2024-07-19 03:11:14 -04:00
|
|
|
px-4
|
|
|
|
py-2
|
|
|
|
rounded
|
2024-08-07 22:48:19 -04:00
|
|
|
text-white;
|
2024-07-19 03:11:14 -04:00
|
|
|
}
|