1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

Merge pull request #32 from muerwre/develop

Develop
This commit is contained in:
muerwre 2021-02-24 16:55:28 +07:00 committed by GitHub
commit 9d8346b315
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 249 additions and 73 deletions

View file

@ -0,0 +1,79 @@
@import "../variables";
.wrapper {
pre {
background-color: darken($comment_bg, 2%);
border: {
left: 4px solid $red;
right: 4px solid $red;
}
font-family: monospace;
font-size: 0.9em;
border-radius: $radius;
width: 100%;
overflow: auto;
padding: $gap;
box-sizing: border-box;
margin-bottom: 0.3em;
}
img {
max-width: 100%;
margin-bottom: 0.3em;
}
p {
margin-bottom: 0.3em;
}
h5, h4, h3, h2, h1 {
color: white;
font-weight: 800;
line-height: 1.2em;
margin-bottom: 0.3em;
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.8em;
}
h3 {
font-size: 1.6em;
}
h4 {
font-size: 1.4em;
}
h5 {
font-size: 1.2em;
}
ul {
list-style: disc;
padding-left: 20px;
margin-bottom: 0.3em;
li {
margin: 0.1em 0;
}
}
strong {
font-weight: bold;
color: white;
}
em {
font-style: italic;
}
:global(.grey) {
color: #555555;
white-space: pre-line;
}
}