diff --git a/contrib/frontends/django/nntpchan/nntpchan/frontend/static/desktop.css b/contrib/frontends/django/nntpchan/nntpchan/frontend/static/desktop.css new file mode 100644 index 0000000..49f23ff --- /dev/null +++ b/contrib/frontends/django/nntpchan/nntpchan/frontend/static/desktop.css @@ -0,0 +1,5 @@ +/** desktop stylesheet */ + +body, html { + background: #EEF2FF url('/static/bg.png') repeat-x 50% 0%; +} diff --git a/contrib/frontends/django/nntpchan/nntpchan/frontend/static/narrow.css b/contrib/frontends/django/nntpchan/nntpchan/frontend/static/narrow.css new file mode 100644 index 0000000..b7cf16b --- /dev/null +++ b/contrib/frontends/django/nntpchan/nntpchan/frontend/static/narrow.css @@ -0,0 +1,13 @@ +/** narrow.css -- for narrow screens */ + +html, body { + background: red; +} + +#navbar { + min-height: 100px; +} + +.postbody { + +} \ No newline at end of file diff --git a/contrib/frontends/django/nntpchan/nntpchan/frontend/static/style.css b/contrib/frontends/django/nntpchan/nntpchan/frontend/static/style.css index 5843ed8..00e6789 100644 --- a/contrib/frontends/django/nntpchan/nntpchan/frontend/static/style.css +++ b/contrib/frontends/django/nntpchan/nntpchan/frontend/static/style.css @@ -1,18 +1,20 @@ + body, html { background: #EEF2FF url('/static/bg.png') repeat-x 50% 0%; } + #logo { height: 500px; } .frontpage { - align-self: center; + /* align-self: center; */ } div { display: flex; - font-size: 12px; + font-size: 12pt; font-family: sans; } @@ -91,8 +93,18 @@ form { width: 100px; } -.postform { - width: 75%; +.postform_outer { + +} + +#postform { + +} + + +#postform_message { + width: 100%; + height: 100px; } .pf-left { @@ -108,6 +120,7 @@ form { } .postbody { + display: inline-block; font-family: serif; font-size: 10pt; white-space: pre-wrap; @@ -132,6 +145,7 @@ form { font-style: italic; margin-left: 1%; margin-right: 1%; + max-width: 200px; } .posts { @@ -158,10 +172,12 @@ footer { .post-info { flex-basis: 100%; + overflow: auto; + display: inline-block; } .post-cite { - align-self: flex-end; + /** align-self: flex-end; */ } .redtext { diff --git a/contrib/frontends/django/nntpchan/nntpchan/templates/frontend/base.html b/contrib/frontends/django/nntpchan/nntpchan/templates/frontend/base.html index 4cb17a9..9631e7e 100644 --- a/contrib/frontends/django/nntpchan/nntpchan/templates/frontend/base.html +++ b/contrib/frontends/django/nntpchan/nntpchan/templates/frontend/base.html @@ -3,7 +3,11 @@