diff --git a/uwsgi.ini b/uwsgi.ini new file mode 100644 index 0000000..e733b69 --- /dev/null +++ b/uwsgi.ini @@ -0,0 +1,8 @@ +[uwsgi] +master=true +processes=4 +threads=2 +socket=/tmp/uwsgi.sock +chmod-socket=666 +module=woodwind:wsgi +pidfile=/tmp/woodwind.pid diff --git a/woodwind/static/style.scss b/woodwind/static/style.scss index dc1f90c..e21caff 100644 --- a/woodwind/static/style.scss +++ b/woodwind/static/style.scss @@ -21,11 +21,16 @@ body { } -main { +header, main { max-width: 600px; margin: 0 auto; } +header { + margin-bottom: 1em; +} + + article { margin-bottom: 2em; box-shadow: $box-shadow; @@ -36,7 +41,7 @@ article { max-width: 100%; } - header { + &> header { img { max-width: 64px; max-height: 64px; @@ -44,8 +49,13 @@ article { float: left; border-radius: 4px; } - color: $armadillo; - border-bottom: 1px solid $armadillo; + color: $lunar-green; + border-bottom: 1px solid $sirocco; + margin-bottom: 0.5em; + } + + footer { + margin-top: 0.5em; } h1 { diff --git a/woodwind/templates/base.jinja2 b/woodwind/templates/base.jinja2 index 3d19d6d..d69d26f 100644 --- a/woodwind/templates/base.jinja2 +++ b/woodwind/templates/base.jinja2 @@ -7,7 +7,8 @@ {% block head %}{% endblock %}
-