accords-library.com/src/tailwind.css

91 lines
1.6 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 hover:text-dark;
}
*::selection {
@apply bg-dark text-light;
2022-01-01 19:04:48 +00:00
}
/* SCROLLBARS STYLING */
* {
@apply [scrollbar-color:theme(colors.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;
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,
.prose p,
.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6,
.prose a,
.prose strong {
@apply text-black;
}
2022-02-17 16:55:44 +00:00
.prose a {
@apply transition-colors underline-offset-2 decoration-dotted underline decoration-dark hover:text-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 shadow-inner-sm shadow-shade;
}
2022-02-25 14:11:58 +00:00
.prose li::marker {
@apply text-dark;
}
.prose blockquote {
@apply border-l-dark
}
}
@layer components {
.texture-paper-dots {
@apply [background-image:var(--theme-texture-dots)] [background-blend-mode:var(--theme-texture-dots-blend)] bg-local bg-[length:10cm];
}
}