accords-library.com/src/tailwind.css

64 lines
1.5 KiB
CSS
Raw Normal View History

2022-01-01 19:04:48 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
* {
@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 {
@apply font-headers font-black;
2022-01-01 19:04:48 +00:00
}
a {
@apply transition-colors underline-offset-2 decoration-dotted underline decoration-dark dark:decoration-dark-dark hover:text-dark dark:hover:text-dark-dark;
}
*::selection {
@apply bg-dark dark:bg-dark-dark text-light dark:text-dark-light;
2022-01-01 19:04:48 +00:00
}
/* SCROLLBARS STYLING */
* {
@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 {
@apply w-3 mobile:w-0;
2022-01-01 19:04:48 +00:00
}
*::-webkit-scrollbar-track {
@apply bg-light dark:bg-dark-light;
2022-01-01 19:04:48 +00:00
}
*::-webkit-scrollbar-thumb {
@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 {
@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
}
.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 {
@apply bg-mid dark:bg-dark-mid shadow-inner-sm shadow-shade dark:shadow-dark-shade;
}
}