From fbccd8e88afe7635644a659cf0d12524cbc9f28a Mon Sep 17 00:00:00 2001 From: manetta Date: Wed, 17 Mar 2021 11:05:38 +0100 Subject: [PATCH] adding the timeline css --- LogBot/stylesheets/timeline.css | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 LogBot/stylesheets/timeline.css diff --git a/LogBot/stylesheets/timeline.css b/LogBot/stylesheets/timeline.css new file mode 100644 index 0000000..9ac83b1 --- /dev/null +++ b/LogBot/stylesheets/timeline.css @@ -0,0 +1,31 @@ +@font-face{ + font-family: "font"; + src: url("font.ttf") format("truetype"); +} +body { + margin: 1em; + max-width: 800px; + background-color: lightyellow; + font-family: "font", serif; + font-size: 16px; + line-height: 1.6; +} +.post { + margin: 1em 0; + clear: both; +} +.post p.key { + float: left; + margin: 0 1em 1em; + font-size: 10px; +} +.post p.message { +} +img, +iframe, +audio, +video { + max-width: calc(100% - 100px); + height: auto; + margin: 0.6em 0; +}