From 2bde1b0660585e16116fbd12c86b53e886b6f3be Mon Sep 17 00:00:00 2001 From: Jonathan Tschanter Date: Fri, 21 Jan 2022 00:14:34 +0100 Subject: Add first layout with simplecss --- public/css/style.css | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 public/css/style.css (limited to 'public/css') diff --git a/public/css/style.css b/public/css/style.css new file mode 100644 index 0000000..8cb9dca --- /dev/null +++ b/public/css/style.css @@ -0,0 +1,36 @@ +:root { + --bg: #fff; + --accent-bg: #f5f7ff; + --bg-header: #212121; + --text-header: #dcdcdc; + --text: #212121; + --text-light: #585858; + --border: #d8dae1; + --accent: #244D5D; + --code: #932227; + --preformatted: #444; + --marked: #1B8E39; + --disabled: #efefef; +} + +header { + padding: 0 0.5rem 0rem 0.5rem; +} +main { + padding-top: 1rem; +} + +main h3 { + margin-top: 1rem; + margin-bottom: 1rem +} + +main h4 { + margin-top: 2.5rem; + margin-bottom: 0rem +} + +main p { + margin-top: 0.25rem; + margin-bottom: 0.25rem; +} \ No newline at end of file -- cgit v1.2.3