2022-09-20 19:59:52 +00:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|
|
|
2022-10-17 11:02:17 +00:00
|
|
|
@import 'fonts';
|
2022-09-20 19:59:52 +00:00
|
|
|
|
|
|
|
body.dark * {
|
|
|
|
@apply border-gray-600
|
|
|
|
}
|
|
|
|
|
2022-10-17 13:42:04 +00:00
|
|
|
* {
|
2022-10-17 11:02:17 +00:00
|
|
|
font-family: GeneralSans, sans-serif !important;
|
2022-10-17 13:42:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#app {
|
2022-09-20 19:59:52 +00:00
|
|
|
@apply min-h-screen;
|
|
|
|
}
|
|
|
|
|
|
|
|
@layer base {
|
|
|
|
|
|
|
|
p, div {
|
2022-10-17 15:08:36 +00:00
|
|
|
@apply text-gray-900 dark:text-white;
|
2022-09-20 19:59:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
@apply text-gray-900 dark:text-white;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
2022-10-17 11:02:17 +00:00
|
|
|
@apply text-3xl sm:text-4xl font-semibold;
|
2022-09-20 19:59:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
2022-10-17 13:42:04 +00:00
|
|
|
@apply text-3xl font-semibold;
|
2022-09-20 19:59:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2022-10-26 14:44:47 +00:00
|
|
|
@apply text-blue-600 hover:underline;
|
2022-09-20 19:59:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bg-white {
|
|
|
|
@apply dark:bg-notion-dark;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bg-gray-50 {
|
|
|
|
@apply dark:bg-notion-dark-light;
|
|
|
|
}
|