1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 22:15:53 +02:00
.profile/styles/global.css

47 lines
842 B
CSS
Raw Normal View History

2021-11-08 15:10:26 +01:00
@tailwind base;
@tailwind components;
@tailwind utilities;
.prose {
2021-12-04 15:52:51 +01:00
@apply !max-w-4xl text-gray dark:text-gray-300;
2021-11-08 15:10:26 +01:00
}
2021-11-09 15:14:31 +01:00
.prose a,
.prose strong {
2021-11-08 15:10:26 +01:00
@apply text-yellow dark:text-yellow-dark;
}
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
2021-12-04 15:52:51 +01:00
@apply mt-1 text-gray dark:text-gray-dark;
2021-11-08 15:10:26 +01:00
}
.prose code {
color: #ce9178;
2021-11-08 15:10:26 +01:00
}
.prose :where(code):not(:where([class~='not-prose'] *))::before,
.prose :where(code):not(:where([class~='not-prose'] *))::after {
content: '';
2022-02-22 21:19:42 +01:00
}
.shiki {
2021-11-08 15:10:26 +01:00
white-space: pre-wrap !important;
word-break: break-word !important;
word-wrap: normal;
}
code {
counter-reset: step;
counter-increment: step 0;
}
code .line::before {
content: counter(step);
counter-increment: step;
width: 1rem;
margin-right: 1.5rem;
display: inline-block;
text-align: right;
color: rgba(133, 133, 133, 0.8);
}