2022-01-01 19:04:48 +00:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
|
|
@layer base {
|
|
|
|
|
|
|
|
* {
|
2022-02-19 01:14:16 +00:00
|
|
|
@apply box-border font-body font-medium scroll-smooth scroll-m-8;
|
2022-01-01 19:04:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
2022-01-29 09:43:51 +00:00
|
|
|
@apply font-headers font-black;
|
2022-01-01 19:04:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2022-02-22 12:53:44 +00:00
|
|
|
@apply transition-colors underline-offset-2 decoration-dotted underline decoration-dark dark:decoration-dark-dark hover:text-dark dark:hover:text-dark-dark;
|
2022-01-29 09:43:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*::selection {
|
2022-02-22 12:53:44 +00:00
|
|
|
@apply bg-dark dark:bg-dark-dark text-light dark:text-dark-light;
|
2022-01-01 19:04:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* SCROLLBARS STYLING */
|
|
|
|
|
|
|
|
* {
|
2022-02-22 12:53:44 +00:00
|
|
|
@apply [scrollbar-color:theme(colors.dark)_transparent] dark:[scrollbar-color:theme(colors.dark-dark)_transparent] [scrollbar-width:thin];
|
2022-01-01 19:04:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*::-webkit-scrollbar {
|
2022-02-17 01:49:32 +00:00
|
|
|
@apply w-3 mobile:w-0;
|
2022-01-01 19:04:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*::-webkit-scrollbar-track {
|
2022-02-22 12:53:44 +00:00
|
|
|
@apply bg-light dark:bg-dark-light;
|
2022-01-01 19:04:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*::-webkit-scrollbar-thumb {
|
2022-02-22 12:53:44 +00:00
|
|
|
@apply bg-dark dark:bg-dark-dark rounded-full border-[3px] border-solid border-light dark:border-dark-light;
|
2022-01-01 19:04:48 +00:00
|
|
|
}
|
2022-02-17 16:55:44 +00:00
|
|
|
|
|
|
|
/* CHANGE PROSE DEFAULTS */
|
|
|
|
|
|
|
|
.prose a {
|
2022-02-22 12:53:44 +00:00
|
|
|
@apply transition-colors underline-offset-2 decoration-dotted underline decoration-dark dark:decoration-dark-dark hover:text-dark dark:hover:text-dark-dark;
|
2022-02-17 16:55:44 +00:00
|
|
|
}
|
|
|
|
|
2022-02-20 12:49:44 +00:00
|
|
|
.prose footer {
|
|
|
|
@apply border-t-[3px] border-dotted pt-6;
|
|
|
|
}
|
|
|
|
|
|
|
|
.prose footer > div {
|
|
|
|
@apply my-2 px-6 py-4 rounded-xl;
|
|
|
|
}
|
|
|
|
|
|
|
|
.prose footer > div:target {
|
2022-02-22 12:53:44 +00:00
|
|
|
@apply bg-mid dark:bg-dark-mid shadow-inner-sm shadow-shade dark:shadow-dark-shade;
|
2022-02-20 12:49:44 +00:00
|
|
|
}
|
2022-01-03 02:40:54 +00:00
|
|
|
}
|