fix some style
This commit is contained in:
parent
a1a4a76474
commit
40765ae342
3 changed files with 14 additions and 8 deletions
|
@ -16,13 +16,17 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.md table thead {
|
.md table thead {
|
||||||
background-color: var(--bd);
|
border-top: 2px solid var(--ft);
|
||||||
|
border-bottom: 1px solid var(--ft);
|
||||||
|
}
|
||||||
|
|
||||||
|
.md table tbody {
|
||||||
|
border-bottom: 2px solid var(--ft);
|
||||||
}
|
}
|
||||||
|
|
||||||
.md table th,
|
.md table th,
|
||||||
.md table td {
|
.md table td {
|
||||||
padding: 10px 20px;
|
padding: 10px 20px;
|
||||||
border-bottom: 1px solid var(--bd);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.md img {
|
.md img {
|
||||||
|
|
|
@ -7,6 +7,10 @@ code[class*="language-"] {
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
line-height: 1.2;
|
||||||
|
}
|
||||||
|
|
||||||
.chroma {
|
.chroma {
|
||||||
background-color: #292929;
|
background-color: #292929;
|
||||||
margin: .5em 0;
|
margin: .5em 0;
|
||||||
|
|
|
@ -54,16 +54,14 @@ The blockquote element represents content that is quoted from another source, op
|
||||||
Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
|
Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
|
||||||
|
|
||||||
| Name | Age |
|
| Name | Age |
|
||||||
| ---- | --- |
|
|:----:|:---:|
|
||||||
|
| Bob | 27 |
|
||||||
Bob | 27
|
| Alice | 23 |
|
||||||
|
|
||||||
Alice | 23
|
|
||||||
|
|
||||||
#### Inline Markdown within tables
|
#### Inline Markdown within tables
|
||||||
|
|
||||||
| Italics | Bold | Code |
|
| Italics | Bold | Code |
|
||||||
| --------- | -------- | ------ |
|
|:---------:|:--------:|:------:|
|
||||||
| *italics* | **bold** | `code` |
|
| *italics* | **bold** | `code` |
|
||||||
|
|
||||||
## Code Blocks
|
## Code Blocks
|
||||||
|
|
Loading…
Reference in a new issue