47 lines
826 B
CSS
47 lines
826 B
CSS
@tailwind base;
|
|
|
|
/*! purgecss start ignore */
|
|
@import 'nx-dev/feature-search/src/lib/algolia-search.global.css';
|
|
@import 'highlight.js/styles/github-gist.css';
|
|
/*! purgecss end ignore */
|
|
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
/*! purgecss start ignore */
|
|
@import './constellation-wobble.animation.css';
|
|
/*! purgecss end ignore */
|
|
|
|
svg {
|
|
shape-rendering: auto;
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
|
|
/*
|
|
General CSS rules for markdown iframes and img
|
|
*/
|
|
iframe[src*='youtube'] {
|
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
|
|
}
|
|
.prose iframe,
|
|
.prose img {
|
|
display: block;
|
|
margin: 1.7rem auto;
|
|
max-width: 560px;
|
|
}
|
|
.prose iframe {
|
|
width: 100%;
|
|
}
|
|
.prose img {
|
|
width: max-content;
|
|
}
|
|
|
|
/*
|
|
Code embed
|
|
*/
|
|
.prose pre {
|
|
background: inherit !important;
|
|
color: inherit !important;
|
|
border: 1px solid #e1e4e8;
|
|
}
|