mirror of
https://codeberg.org/lauralani/www-lauka-net.git
synced 2024-11-23 20:50:40 +01:00
try new code font formatting
This commit is contained in:
parent
6910132ad1
commit
d33131f3f2
1 changed files with 24 additions and 8 deletions
|
@ -1,4 +1,15 @@
|
||||||
a, body, h1, h2, h3, html, li, p, span, strong, u, ul {
|
a,
|
||||||
|
body,
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
html,
|
||||||
|
li,
|
||||||
|
p,
|
||||||
|
span,
|
||||||
|
strong,
|
||||||
|
u,
|
||||||
|
ul {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
border: 0;
|
border: 0;
|
||||||
|
@ -32,6 +43,10 @@ a {
|
||||||
color: #00cccc
|
color: #00cccc
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
margin-bottom: .75rem
|
margin-bottom: .75rem
|
||||||
}
|
}
|
||||||
|
@ -47,23 +62,23 @@ h3 {
|
||||||
|
|
||||||
h1:before {
|
h1:before {
|
||||||
content: "# ";
|
content: "# ";
|
||||||
content: "# "/ "";
|
content: "# " / "";
|
||||||
}
|
}
|
||||||
|
|
||||||
h1:after {
|
h1:after {
|
||||||
content: "-----";
|
content: "-----";
|
||||||
content: "-----"/ "";
|
content: "-----" / "";
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
h2:before {
|
h2:before {
|
||||||
content: "## ";
|
content: "## ";
|
||||||
content: "## "/ "";
|
content: "## " / "";
|
||||||
}
|
}
|
||||||
|
|
||||||
h3:before {
|
h3:before {
|
||||||
content: "### ";
|
content: "### ";
|
||||||
content: "### "/ "";
|
content: "### " / "";
|
||||||
}
|
}
|
||||||
|
|
||||||
strong {
|
strong {
|
||||||
|
@ -72,19 +87,20 @@ strong {
|
||||||
|
|
||||||
strong:before {
|
strong:before {
|
||||||
content: "**";
|
content: "**";
|
||||||
content: "**"/ "";
|
content: "**" / "";
|
||||||
}
|
}
|
||||||
|
|
||||||
strong:after {
|
strong:after {
|
||||||
content: "**";
|
content: "**";
|
||||||
content: "**"/ "";
|
content: "**" / "";
|
||||||
}
|
}
|
||||||
|
|
||||||
strong {
|
strong {
|
||||||
color: #d66388
|
color: #d66388
|
||||||
}
|
}
|
||||||
|
|
||||||
code {
|
p > code, code {
|
||||||
|
font: unset;
|
||||||
font-family: Consolas, monaco, monospace;
|
font-family: Consolas, monaco, monospace;
|
||||||
color: cornflowerblue;
|
color: cornflowerblue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue