lbry-desktop/src/renderer/scss/component/_markdown-preview.scss

127 lines
1.5 KiB
SCSS
Raw Normal View History

2018-05-07 06:59:33 +02:00
.markdown-preview {
margin: 0;
// Headers
2018-05-11 22:58:30 +02:00
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'metropolis-semibold';
margin: 16px 0;
}
h1 {
font-size: 1.22em;
}
h2 {
font-size: 1.14em;
}
h3 {
font-size: 1.06em;
}
h4 {
font-size: 0.92em;
}
h5 {
font-size: 0.84em;
}
h6 {
color: $lbry-gray-5;
2018-10-17 19:14:24 +02:00
font-size: 0.84em;
2018-05-11 22:58:30 +02:00
}
2018-05-07 06:59:33 +02:00
// Paragraphs
2018-05-30 20:12:54 +02:00
p {
white-space: pre-line;
}
2018-05-30 05:08:37 +02:00
// Strikethrough text
2018-05-30 20:12:54 +02:00
del {
color: $lbry-gray-5;
2018-05-30 20:12:54 +02:00
}
2018-05-07 06:59:33 +02:00
// Tables
2018-05-30 20:12:54 +02:00
table {
margin: 16px 0;
2018-10-17 19:14:24 +02:00
padding: 8px;
background-color: $lbry-white;
tr {
td,
th,
td:first-of-type,
th:first-of-type,
td:last-of-type,
th:last-of-type {
padding: 8px;
}
2018-05-30 20:12:54 +02:00
}
}
2018-05-07 06:59:33 +02:00
// Image
2018-07-27 02:24:00 +02:00
img {
margin: 16px 0;
}
// Horizontal Rule
2018-05-30 20:12:54 +02:00
hr {
border: 1px solid $lbry-gray-2;
2018-05-30 20:12:54 +02:00
}
2018-05-07 06:59:33 +02:00
// Code
2018-05-30 20:12:54 +02:00
code {
margin: 16px 0;
2018-10-17 19:14:24 +02:00
padding: 8px;
background-color: $lbry-gray-1;
color: $lbry-gray-5;
2018-10-17 19:14:24 +02:00
display: block;
2018-05-30 20:12:54 +02:00
font-family: Consolas, 'Lucida Console', 'Source Sans', monospace;
2018-10-17 19:14:24 +02:00
font-size: 1em;
2018-05-30 20:12:54 +02:00
}
2018-06-11 00:32:30 +02:00
a {
color: $lbry-blue-1;
2018-07-22 23:28:33 +02:00
display: inline-block;
2018-10-17 19:14:24 +02:00
font-size: 1em;
2018-07-22 23:28:33 +02:00
}
// Lists
2018-07-22 23:28:33 +02:00
ul,
ol {
margin-bottom: 2em;
> li {
list-style-position: outside;
}
2018-07-22 23:28:33 +02:00
}
ul {
list-style: initial;
}
li {
margin-left: 2em;
2018-10-17 19:14:24 +02:00
2018-07-22 23:28:33 +02:00
p {
2018-06-11 00:32:30 +02:00
display: inline-block;
2018-07-22 23:28:33 +02:00
}
}
2018-05-07 06:59:33 +02:00
}
2018-05-10 04:47:08 +02:00
blockquote {
margin: 16px 0;
2018-10-17 19:14:24 +02:00
padding: 8px;
background-color: $lbry-gray-1;
color: $lbry-gray-5;
border-left: 2px solid $lbry-gray-5;
2018-05-10 04:47:08 +02:00
}