master
Your Name 5 years ago
parent 44335b1790
commit ffbf011e67

@ -289,6 +289,8 @@ display: none;
min-width: 200px; min-width: 200px;
min-height: 100px; min-height: 100px;
background-color: #AAA; background-color: #AAA;
white-space: pre-wrap;
word-wrap: break-word;
} }
.post{ .post{
@ -324,6 +326,7 @@ width: 100%;
.post pre{ .post pre{
font-size: 12px!important; font-size: 12px!important;
word-wrap: break-word!important; word-wrap: break-word!important;
white-space: pre-wrap!important;
font-family: monospace!important; font-family: monospace!important;
background-color: lightgrey; background-color: lightgrey;
width: 100%; width: 100%;
@ -361,9 +364,10 @@ margin-top: 20px;
} }
#secondframe{ #secondframe{
width: 50%; width: 50%;
position: absolute; position: fixed;
left: 50%; left: 50%;
top:0; top:0;
height: 100%; height: 100%;

@ -2,7 +2,6 @@
{% block main %} {% block main %}
{% for post in posts %} {% for post in posts %}
{% if "Introduction"|string() == post.title|string() %} {% if "Introduction"|string() == post.title|string() %}
<div class="post"><!--<a href="{{ post.pid }}"><h2>{{ post.title }}</h2></a>--> <div class="post"><!--<a href="{{ post.pid }}"><h2>{{ post.title }}</h2></a>-->
@ -12,5 +11,4 @@
<em>No entries here so far</em> <em>No entries here so far</em>
{% endfor %} {% endfor %}
{% endblock %} {% endblock %}

Loading…
Cancel
Save