diff --git a/static/css/main.css b/static/css/main.css index 439f9eb..613359b 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -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; padding: 0; border: 0; @@ -32,6 +43,10 @@ a { color: #00cccc } +a:hover { + text-decoration: underline; +} + p { margin-bottom: .75rem } @@ -47,23 +62,23 @@ h3 { h1:before { content: "# "; - content: "# "/ ""; + content: "# " / ""; } h1:after { content: "-----"; - content: "-----"/ ""; + content: "-----" / ""; display: block; } h2:before { content: "## "; - content: "## "/ ""; + content: "## " / ""; } h3:before { content: "### "; - content: "### "/ ""; + content: "### " / ""; } strong { @@ -72,19 +87,20 @@ strong { strong:before { content: "**"; - content: "**"/ ""; + content: "**" / ""; } strong:after { content: "**"; - content: "**"/ ""; + content: "**" / ""; } strong { color: #d66388 } -code { +p > code, code { + font: unset; font-family: Consolas, monaco, monospace; color: cornflowerblue; }