From de6af9fbe9b3dfae87a62f9e4e8ce78090c9ddbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Ortega=20Froysa?= Date: Sun, 18 Apr 2021 21:14:28 +0200 Subject: [PATCH] Added new rules for reference ordered lists. --- style.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/style.css b/style.css index ff6bc7f..476c735 100644 --- a/style.css +++ b/style.css @@ -58,6 +58,19 @@ ul { margin-top: 5px; } +ol.refs { + padding-left: 5px; +} + +ol.refs li { + list-style-type: none; + counter-increment: step_counter; +} + +ol.refs li:before { + content: "[" counter(step_counter) "] "; +} + p { font-size: 16px; line-height: 24px; @@ -90,6 +103,10 @@ h3, h4 { padding: 1px 10px; } +code { + font-family: monospace; +} + footer { text-align: center; }