From 857e0584d19e0abbc9f73a7ea9aea24be6a6786e Mon Sep 17 00:00:00 2001 From: hyperion Date: Fri, 30 Oct 2020 12:00:11 +0100 Subject: Refactoring repository structure and building basic nix module --- web/static/main.css | 69 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 web/static/main.css (limited to 'web/static/main.css') diff --git a/web/static/main.css b/web/static/main.css new file mode 100644 index 0000000..a5305a4 --- /dev/null +++ b/web/static/main.css @@ -0,0 +1,69 @@ +body { + margin: 0; + font-family: "Roboto", sans-serif; + font-weight: 300; + display: flex; + flex-direction: column; + min-height: 100vh; + background: #424242; + color: #ffffff; + font-family: "Roboto", "Open Sans", "Montserrat", sans-serif; + font-size: 1.25em; + +} + +header { + display: flex; + flex-direction: row; + justify-content: space-between; + align-items: center; + background: #703f96; + padding: 0 2rem; + color: white; +} + +.stream-status { + border-bottom: solid 1px white; + animation: flash 0.75s infinite alternate; + font-size: 1.5rem; +} + +.content { + display: flex; + justify-content: center; + padding: 2rem 0; +} + +code { + font-family: "Iosekva", "Inconsolata", monospace; + font-size: 1.25em; +} + +.block { + display: flex; + flex-direction: column; + max-width: 75%; + align-self: center; +} + +a { + color: #FF88FF; + text-decoration: none; +} +a:hover { + border-bottom: solid 1px #FF88FF; +} + +#conversejs { + border: solid 2px black; +} + +.chat { + width: 27%; +} + +.stream { + border: solid 2px black; + align-self: flex-start; + width: 70%; +} -- cgit v1.2.3