34 lines
730 B
CSS
34 lines
730 B
CSS
@import "tailwindcss/base";
|
|
@import "tailwindcss/components";
|
|
@import "tailwindcss/utilities";
|
|
|
|
body {
|
|
@apply dark:bg-gradient-dark dark:text-primary-text bg-white text-gradient-dark xl:w-2/3 w-11/12 mx-auto;
|
|
}
|
|
|
|
.prose {
|
|
margin: 0;
|
|
min-width: 100%;
|
|
}
|
|
|
|
pre > code {
|
|
background: transparent !important;
|
|
color: white !important;
|
|
}
|
|
|
|
.codeStyle > code {
|
|
background: transparent;
|
|
}
|
|
|
|
pre > div > div > button > svg:hover {
|
|
@apply hover:text-action transition-all ease-in-out duration-100 !important;
|
|
}
|
|
|
|
h3 > a {
|
|
@apply cursor-pointer relative xl:text-4xl text-2xl text-primary-text decoration-transparent font-black uppercase !important;
|
|
}
|
|
|
|
h3 > a:hover::before {
|
|
@apply content-['#'] absolute -left-8 text-gray-600;
|
|
}
|