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

235 lines
3.2 KiB
Stylus
Raw Normal View History

2020-04-03 18:18:42 +08:00
.markdown-body {
2020-12-01 16:51:38 +08:00
font-size: 1rem;
2020-03-26 22:31:12 +08:00
blockquote {
2020-11-26 10:46:42 +08:00
p {
padding: 5px 5px 5px 10px;
}
box-sizing: border-box;
border-left: 5px solid var(--default-text-color);
margin: 20px 0;
2020-11-26 10:46:42 +08:00
color: var(--default-text-color);
background: var(--second-background-color);
2020-03-26 22:31:12 +08:00
}
2020-12-01 16:51:38 +08:00
2020-04-03 18:18:42 +08:00
p {
2021-01-21 17:31:25 +08:00
line-height: 2;
color: var(--default-text-color);
2020-04-03 18:18:42 +08:00
}
2020-03-26 22:31:12 +08:00
2020-12-01 16:51:38 +08:00
2020-03-26 22:31:12 +08:00
a {
position: relative;
outline: 0;
text-decoration: none;
overflow-wrap: break-word;
cursor: pointer;
2020-12-10 11:50:41 +08:00
border-bottom: 1px solid var(--third-text-color);
box-sizing: border-box;
padding-bottom: 2px;
.fas, .far, fab {
margin-left: 6px;
position: relative;
color: var(--third-text-color);
}
&:hover {
text-decoration: underline;
&::after {
background: var(--primary-color);
}
}
2020-03-26 22:31:12 +08:00
}
strong {
color: var(--default-text-color);
2020-03-26 22:31:12 +08:00
}
2021-01-22 12:27:42 +08:00
2021-01-21 18:28:00 +08:00
em {
color: var(--default-text-color);
}
ul > li, ol > li {
2020-04-08 17:30:05 +08:00
margin-left: 16px;
2020-12-01 16:51:38 +08:00
line-height: 2rem;
}
ul {
li {
list-style: disc;
ul {
li {
list-style: circle;
ul {
li {
list-style: square;
}
}
}
}
}
}
ol {
li {
2020-11-26 10:46:42 +08:00
list-style: decimal;
ol {
li {
2020-11-26 17:45:37 +08:00
list-style: upper-alpha;
ol {
li {
2020-11-26 17:45:37 +08:00
list-style: upper-roman;
}
}
}
}
}
}
li {
color: var(--default-text-color);
}
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);
2021-01-21 17:31:25 +08:00
line-height: 1.5;
+keep-tablet() {
line-height: 1.25;
}
}
2020-03-26 22:31:12 +08:00
2020-03-26 22:31:12 +08:00
h1 {
2020-12-01 16:51:38 +08:00
font-size: 1.8rem;
2020-04-03 18:18:42 +08:00
font-weight: 600;
2020-10-30 10:18:42 +08:00
2020-11-20 12:02:22 +08:00
+keep-tablet() {
2020-12-01 16:51:38 +08:00
font-size: 1.7rem;
2020-10-30 10:18:42 +08:00
}
2020-03-26 22:31:12 +08:00
}
h2 {
2020-12-01 16:51:38 +08:00
font-size: 1.7rem;
2020-04-03 18:18:42 +08:00
font-weight: 600;
2020-10-30 10:18:42 +08:00
2020-11-20 12:02:22 +08:00
+keep-tablet() {
2020-12-01 16:51:38 +08:00
font-size: 1.6rem;
2020-10-30 10:18:42 +08:00
}
2020-03-26 22:31:12 +08:00
}
2020-03-26 22:31:12 +08:00
h3 {
2020-12-01 16:51:38 +08:00
font-size: 1.6rem;
2020-04-03 18:18:42 +08:00
font-weight: 550;
2020-10-30 10:18:42 +08:00
2020-11-20 12:02:22 +08:00
+keep-tablet() {
2020-12-01 16:51:38 +08:00
font-size: 1.5rem;
2020-10-30 10:18:42 +08:00
}
2020-03-26 22:31:12 +08:00
}
h4 {
2020-12-01 16:51:38 +08:00
font-size: 1.5rem;
font-weight: 550;
2020-10-30 10:18:42 +08:00
2020-11-20 12:02:22 +08:00
+keep-tablet() {
2020-12-01 16:51:38 +08:00
font-size: 1.4rem;
2020-10-30 10:18:42 +08:00
}
2020-03-26 22:31:12 +08:00
}
2020-03-26 22:31:12 +08:00
h5 {
2020-12-01 16:51:38 +08:00
font-size: 1.28rem;
font-weight: 500;
2020-11-20 12:02:22 +08:00
+keep-tablet() {
2020-12-01 16:51:38 +08:00
font-size: 1.18rem;
2020-10-30 10:18:42 +08:00
}
2020-03-26 22:31:12 +08:00
}
2020-03-26 22:31:12 +08:00
h6 {
2020-12-01 16:51:38 +08:00
font-size: 1.2rem;
font-weight: 500;
2021-01-21 17:31:25 +08:00
line-height: 1.2;
2020-11-13 14:43:22 +08:00
2020-11-20 12:02:22 +08:00
+keep-tablet() {
2020-12-01 16:51:38 +08:00
font-size: 1.1rem;
2021-01-21 17:31:25 +08:00
line-height: 1.1;
2020-10-30 10:18:42 +08:00
}
2020-03-26 22:31:12 +08:00
}
img {
2020-11-20 12:02:22 +08:00
box-sizing: border-box;
max-width: 100%;
cursor: zoom-in;
display: block;
2020-11-20 12:02:22 +08:00
box-shadow: 0 0 2px var(--shadow-color);
2021-01-22 12:27:42 +08:00
transition-t("padding, margin", "0, 0", "0.2, 0.2", "linear, linear");
if (hexo-config('style.article_img_align') == 'center') {
2020-11-20 12:02:22 +08:00
margin: 10px auto 2px;
} else {
2020-11-20 12:02:22 +08:00
margin: 10px 0 2px;
}
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
}
}