accords-library.com/src/tailwind.css

55 lines
894 B
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;
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;
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
}
}