Responsive layout prevents cutting of terminal commands

Paul Wagener 10 years ago
parent 6ddd19929c
commit 0672cfd31d
  1. 9
      static/css/bootstrap-responsive.min.css
  2. 8
      static/css/style.css
  3. 3
      templates/base.html

File diff suppressed because one or more lines are too long

@ -10,6 +10,13 @@ figure img {
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
} }
@media (min-width: 767px) {
#menu {
position: fixed;
}
}
.screenshot { .screenshot {
box-shadow: 0 0 10px #888; box-shadow: 0 0 10px #888;
border: 1px solid #aaa; border: 1px solid #aaa;
@ -57,6 +64,7 @@ code.terminal {
padding: 1em; padding: 1em;
margin: 1em; margin: 1em;
display: block; display: block;
white-space: normal;
} }
.argument { .argument {

@ -3,6 +3,7 @@
<head> <head>
<title>Security 1</title> <title>Security 1</title>
<link href="/static/css/bootstrap.min.css" rel="stylesheet" type="text/css"> <link href="/static/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="/static/css/bootstrap-responsive.min.css" rel="stylesheet" type="text/css">
<link href="/static/css/style.css" rel="stylesheet" type="text/css"> <link href="/static/css/style.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="/static/js/jquery-2.1.0.min.js"></script> <script type="text/javascript" src="/static/js/jquery-2.1.0.min.js"></script>
<script type="text/javascript" src="/static/js/jquery.base64.min.js"></script> <script type="text/javascript" src="/static/js/jquery.base64.min.js"></script>
@ -13,7 +14,7 @@
{% csrf_token %} {% csrf_token %}
<div class="row-fluid"> <div class="row-fluid">
<div class="well span3" style="position: fixed"> <div class="well span3" id="menu">
<p>Ingelogd als <strong>{{ user }}</strong>.</p> <p>Ingelogd als <strong>{{ user }}</strong>.</p>
<h5>Security 1</h5> <h5>Security 1</h5>

Loading…
Cancel
Save