[HTML] Add support for block quotes

Closes #208
This commit is contained in:
Alexey Golub
2019-09-15 21:25:04 +03:00
parent cd042e5368
commit d88cd9b228
6 changed files with 39 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
/* === GENERAL === */
/* === GENERAL === */
body {
background-color: #36393e;
@@ -13,6 +13,10 @@ a {
background-color: rgba(255, 255, 255, 0.1);
}
.quote {
border-color: #4f545c;
}
.pre {
background-color: #2f3136 !important;
}

View File

@@ -1,4 +1,4 @@
/* === GENERAL === */
/* === GENERAL === */
body {
background-color: #ffffff;
@@ -14,6 +14,10 @@ a {
background-color: rgba(0, 0, 0, 0.1);
}
.quote {
border-color: #c7ccd1;
}
.pre {
background-color: #f9f9f9 !important;
}

View File

@@ -57,6 +57,13 @@ img {
border-radius: 3px;
}
.quote {
border-left: 4px solid;
border-radius: 3px;
margin: 8px 0;
padding-left: 10px;
}
.pre {
font-family: "Consolas", "Courier New", Courier, monospace;
}