diff options
author | Jonathan Tschanter <jmtw@tutanota.de> | 2022-01-21 00:14:34 +0100 |
---|---|---|
committer | Jonathan Tschanter <jmtw@tutanota.de> | 2022-01-21 00:14:34 +0100 |
commit | 2bde1b0660585e16116fbd12c86b53e886b6f3be (patch) | |
tree | 8c23fbad83e8b947c60a50b7af6be2c8b0d4867a /public | |
parent | c2b0ebcdbb23a38a31b4d8c9e39f2a2be4cc862b (diff) |
Add first layout with simplecss
Diffstat (limited to 'public')
-rw-r--r-- | public/css/style.css | 36 |
1 files changed, 36 insertions, 0 deletions
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 |