X-Git-Url: https://jxself.org/git/?p=mudsync.git;a=blobdiff_plain;f=mudsync%2Fnetworking.scm;h=f69f47a92cc13dc3a3d305954e321c76793ad857;hp=6f60ad971d8f15b7b2d351820a283168d4184f36;hb=d97fa236de7c359ac318819062131137e3064082;hpb=16299416786d528400f22d4d0c07bd3bbeb90ae3 diff --git a/mudsync/networking.scm b/mudsync/networking.scm index 6f60ad9..f69f47a 100644 --- a/mudsync/networking.scm +++ b/mudsync/networking.scm @@ -209,23 +209,19 @@ (define (view:main-display request body) (define body-tmpl - '(body - (@ (style "display: flex; flex-direction: column; align-content: stretch; align-items: stretch;")) - (div (@ (style "background: #555555; flex: 1;") - (id "stream-output")) + '((div (@ (id "stream-output")) (p "nope")) - (div (@ (id "input-box") - (style "flex: 1; background: #000055;")) + (div (@ (id "input-box")) (p "test test") (input (@ (id "input")))))) (define (main-tmpl) - `(html (@ (xmlns "http://www.w3.org/1999/xhtml") - (style "width: 100%; height: 100%;")) - (head - (title "Mudsync!") - (meta (@ (charset "UTF-8")))) - ,body-tmpl)) + `(html (@ (xmlns "http://www.w3.org/1999/xhtml")) + (head (title "Mudsync!") + (meta (@ (charset "UTF-8"))) + (link (@ (rel "stylesheet") + (href "/static/css/main.css")))) + (body ,@body-tmpl))) (define (write-template-to-string) (with-fluids ((%default-port-encoding "UTF-8")) (with-output-to-string