diff --git a/app/static/css/style.css b/app/static/css/style.css index 0c4b179..c3ad117 100644 --- a/app/static/css/style.css +++ b/app/static/css/style.css @@ -289,6 +289,8 @@ display: none; min-width: 200px; min-height: 100px; background-color: #AAA; + white-space: pre-wrap; + word-wrap: break-word; } .post{ @@ -324,6 +326,7 @@ width: 100%; .post pre{ font-size: 12px!important; word-wrap: break-word!important; + white-space: pre-wrap!important; font-family: monospace!important; background-color: lightgrey; width: 100%; @@ -361,9 +364,10 @@ margin-top: 20px; } + #secondframe{ width: 50%; - position: absolute; + position: fixed; left: 50%; top:0; height: 100%; diff --git a/app/templates/index.html b/app/templates/index.html index 00202e5..c9d9783 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -2,7 +2,6 @@ {% block main %} - {% for post in posts %} {% if "Introduction"|string() == post.title|string() %}
@@ -12,5 +11,4 @@ No entries here so far {% endfor %} - {% endblock %}