accords-library.com/src/tailwind.css

66 lines
1.1 KiB
CSS
Raw Normal View History

2022-01-01 19:04:48 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
html,
body {
@apply p-0 m-0 bg-light text-black mobile:text-[90%];
2022-01-01 19:04:48 +00:00
}
* {
@apply box-border font-body font-medium scroll-smooth;
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 hover:text-dark;
}
*:target {
@apply scroll-mt-4;
2022-01-01 19:04:48 +00:00
}
*::selection {
@apply bg-dark text-light;
2022-01-01 19:04:48 +00:00
}
/* SCROLLBARS STYLING */
* {
scrollbar-color: theme("colors.dark") transparent;
scrollbar-width: thin;
}
*::-webkit-scrollbar {
@apply w-3 mobile:w-0;
2022-01-01 19:04:48 +00:00
}
*::-webkit-scrollbar-track {
@apply bg-[transparent];
2022-01-01 19:04:48 +00:00
}
*::-webkit-scrollbar-thumb {
@apply bg-dark rounded-full border-[3px] border-solid border-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 hover:text-dark;
}
.prose {
--tw-prose-bullets: theme("colors.dark") !important;
}
}