hexo-theme-keep/source/css/layout/common/markdown.styl

218 lines
3.0 KiB
Stylus
Raw Normal View History

2020-04-01 12:09:06 +08:00
@require 'variables.styl'
2020-03-26 22:31:12 +08:00
2020-04-03 18:18:42 +08:00
.markdown-body {
2020-03-26 22:31:12 +08:00
blockquote {
border-left: 5px solid var(--third-text-color);
margin: 20px 0;
2020-03-26 22:31:12 +08:00
padding: 0 0 0 10px;
color: var(--third-text-color);
2020-03-26 22:31:12 +08:00
}
2020-04-03 18:18:42 +08:00
p {
line-height: 2em;
}
2020-03-26 22:31:12 +08:00
a {
position: relative;
outline: 0;
text-decoration: none;
overflow-wrap: break-word;
cursor: pointer;
.fa {
margin-left: 5px;
position: relative;
transform: translateY(10%);
}
&:hover {
&::after {
background: var(--primary-color);
}
}
&::after {
position: absolute;
content: '';
width: 100%;
height: 1px;
top: 108%;
left: 0;
background: var(--second-text-color);
}
2020-03-26 22:31:12 +08:00
}
a:hover {
text-decoration: underline;
}
ul > li, ol > li {
2020-04-08 17:30:05 +08:00
margin-left: 16px;
line-height: 2em;
}
ul {
li {
list-style: disc;
ul {
li {
list-style: circle;
ul {
li {
list-style: square;
}
}
}
}
}
}
ol {
li {
list-style: upper-roman;
ol {
li {
list-style: lower-roman;
ol {
li {
list-style: lower-alpha;
}
}
}
}
}
}
2020-09-03 12:28:24 +08:00
h1, h2, h3, h4, h5, h6 {
2020-10-30 10:18:42 +08:00
color: var(--second-text-color);
}
2020-03-26 22:31:12 +08:00
h1 {
2020-10-30 10:18:42 +08:00
font-size: 1.8em;
2020-04-03 18:18:42 +08:00
font-weight: 600;
2020-10-30 10:18:42 +08:00
line-height: 1.2em;
+ils-tablet() {
font-size: 1.7em;
line-height: 1.1em;
}
2020-03-26 22:31:12 +08:00
}
h2 {
2020-10-30 10:18:42 +08:00
font-size: 1.7em;
2020-04-03 18:18:42 +08:00
font-weight: 600;
2020-10-30 10:18:42 +08:00
line-height: 1.2em;
+ils-tablet() {
font-size: 1.6em;
line-height: 1.1em;
}
2020-03-26 22:31:12 +08:00
}
h3 {
font-size: 1.6em;
2020-04-03 18:18:42 +08:00
font-weight: 550;
2020-10-30 10:18:42 +08:00
line-height: 1.16em;
+ils-tablet() {
font-size: 1.5em;
line-height: 1.06em;
}
2020-03-26 22:31:12 +08:00
}
h4 {
2020-10-30 10:18:42 +08:00
font-size: 1.5em;
font-weight: 550;
2020-10-30 10:18:42 +08:00
line-height: 1.16em;
+ils-tablet() {
font-size: 1.4em;
line-height: 1.06em;
}
2020-03-26 22:31:12 +08:00
}
h5 {
2020-10-30 10:18:42 +08:00
font-size: 1.28em;
font-weight: 500;
2020-10-30 10:18:42 +08:00
line-height: 1.12em;
2020-10-30 10:18:42 +08:00
+ils-tablet() {
font-size: 1.18em;
line-height: 1.02em;
}
2020-03-26 22:31:12 +08:00
}
h6 {
font-size: 1.2em;
font-weight: 500;
2020-10-30 10:18:42 +08:00
line-height: 1.12em;
2020-11-13 14:43:22 +08:00
2020-10-30 10:18:42 +08:00
+ils-tablet() {
font-size: 1.1em;
line-height: 1.02em;
}
2020-03-26 22:31:12 +08:00
}
img {
box-sizing: initial;
2020-03-27 21:38:48 +08:00
padding: 2px;
max-width: 100%;
2020-04-03 18:18:42 +08:00
border: 1px solid var(--border-color);
2020-11-16 19:04:24 +08:00
cursor: pointer;
display: block;
if (hexo-config('style.img_position') == 'center') {
margin: 2px auto;
} else {
margin: 2px 0;
}
2020-03-26 22:31:12 +08:00
}
& > table {
border-spacing: 0;
border-collapse: collapse;
width: 100%;
overflow: auto;
2020-03-26 22:31:12 +08:00
td,
th {
padding: 0;
}
2020-03-26 22:31:12 +08:00
th {
font-weight: 600;
}
2020-03-26 22:31:12 +08:00
td,
th {
padding: 6px 13px;
2020-10-30 10:18:42 +08:00
border: 1px solid var(--border-color);
2020-03-26 22:31:12 +08:00
}
tr {
2020-10-30 10:18:42 +08:00
background-color: var(--background-color);
border: 1px solid var(--fourth-text-color);
}
2020-03-26 22:31:12 +08:00
tr:nth-child(2n) {
2020-11-13 14:43:22 +08:00
background-color: var(--second-background-color);
}
2020-03-26 22:31:12 +08:00
}
}