1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00
vault-frontend/src/styles/common/markdown.module.scss
2022-01-11 16:34:26 +07:00

88 lines
1.4 KiB
SCSS

@import "../variables";
$margin: 1em;
.wrapper {
blockquote {
border-left: 4px solid $wisegreen;
padding: $margin / 2 0;
margin-bottom: $margin;
color: $wisegreen;
font-size: 0.9em;
background-color: transparentize($wisegreen, 0.9);
p {
margin: 0 $margin;
}
&+blockquote {
margin-top: -$margin;
}
}
pre {
background-color: transparentize($blue, 0.9);
font-family: monospace;
font-size: 0.8em;
border-radius: 2px;
width: 100%;
overflow: auto;
padding: $gap;
box-sizing: border-box;
margin-bottom: $margin;
code {
color: transparentize($wisegreen, 0.1);
font-family: monospace;
white-space: pre-wrap;
}
}
p, li {
code {
background-color: transparentize($blue, 0.9);
padding: 2px 4px;
border-radius: 0.3em;
color: transparentize($wisegreen, 0.1);
font-size: 0.8em;
}
}
img {
max-width: 100%;
margin-bottom: $margin;
}
h5, h4, h3, h2, h1 {
line-height: 1.2em;
margin: $margin * 1.5 0 $margin / 2;
&:first-child {
margin-top: $margin / 4;
}
}
ul {
list-style: disc;
padding-left: 20px;
margin-bottom: $margin;
li {
margin: $margin/3 0;
}
}
strong {
font-weight: bold;
color: white;
}
em {
font-style: italic;
}
:global(.grey) {
color: #666666;
white-space: pre-line;
}
}