diff options
author | vulonkaaz <7442677+vulonkaaz@users.noreply.github.com> | 2024-06-19 17:44:29 +0200 |
---|---|---|
committer | vulonkaaz <7442677+vulonkaaz@users.noreply.github.com> | 2024-06-19 17:44:29 +0200 |
commit | 2fe3b4972f02be8b0c6143325d541ddda4b91559 (patch) | |
tree | 5b430810b19e0c6b1112c601b9e64b9e9ec72c61 /static/style.css |
Initial version
Diffstat (limited to 'static/style.css')
-rw-r--r-- | static/style.css | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..e82190c --- /dev/null +++ b/static/style.css @@ -0,0 +1,49 @@ +body { + background-color: #cff3ff; + padding: 20px; +} + +main { + border: 1px solid black; + background-color: #cef; + width: fit-content; + margin: auto; + padding: 5px; +} + +h1 { + text-align: center; +} + +.threadlist { + display: flex; + flex-wrap: wrap; + justify-content: center; + margin-bottom: 30px; +} + +.thread { + display: flex; + flex-direction: column; + width: min-content; + margin: auto; +} + +h1 { + text-align: center; +} + +article { + border: #5e5e5e 1px dashed; + margin: 2px; +} + +.editor { + width: fit-content; + margin: auto; + margin-bottom: 20px; +} + +footer { + font-size: 0.8em; +} |