update `public_html` static files
parent
c52cd4ea39
commit
de3779546b
|
@ -199,6 +199,13 @@ pre {
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pre::before,
|
||||||
|
pre::after {
|
||||||
|
display: block;
|
||||||
|
content: "```";
|
||||||
|
color: var(--blue);
|
||||||
|
}
|
||||||
|
|
||||||
/* inline text semantics */
|
/* inline text semantics */
|
||||||
|
|
||||||
a {
|
a {
|
||||||
|
@ -223,8 +230,10 @@ a:visited:active {
|
||||||
text-decoration-color: var(--red);
|
text-decoration-color: var(--red);
|
||||||
}
|
}
|
||||||
|
|
||||||
code {
|
:not(pre)>code::before,
|
||||||
color: var(--orange);
|
:not(pre)>code::after {
|
||||||
|
content: "`";
|
||||||
|
color: var(--blue);
|
||||||
}
|
}
|
||||||
|
|
||||||
sup {
|
sup {
|
||||||
|
@ -307,7 +316,8 @@ article.post {
|
||||||
}
|
}
|
||||||
|
|
||||||
article.post>header,
|
article.post>header,
|
||||||
article.post>nav {
|
article.post>nav,
|
||||||
|
article.post>footer {
|
||||||
margin: 1rlh 0;
|
margin: 1rlh 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue