Skip to content

Commit

Permalink
Merge pull request #64 from jmdkastro/master
Browse files Browse the repository at this point in the history
Made background image static and added preliminary work for footer.
  • Loading branch information
jmdkastro committed May 16, 2015
2 parents 0bc128e + 6832077 commit 09dee52
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 1 deletion.
11 changes: 11 additions & 0 deletions static/css/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,14 @@ h1{
transform: rotate(180deg);
}

#footer{
height: 50px;
margin-top: 50px;
background: white;
}

body {
background-image: url('/static/bg.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
}
2 changes: 1 addition & 1 deletion templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
</script>
{% endblock %}
</head>
<body background="/static/bg.jpg">
<body>
<div class="container" id="menu">
{% block body %}
<div>
Expand Down
1 change: 1 addition & 0 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ <h1 class="title">CAMELOT</h1>
</center>
</div>
</div>
<div id='footer'></div>
</body>
{% endblock %}

Expand Down
1 change: 1 addition & 0 deletions templates/parse_file.html
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,5 @@ <h1 class="title">CAMELOT Parse file {{filename}}</h1>
</form>
</div>
</div>
<div id='footer'></div>
{% endblock %}
1 change: 1 addition & 0 deletions templates/query_form.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,6 @@ <h1 class="title">CAMELOT Query form</h1>
</form>
</div>
</div>
<div id='footer'></div>

{% endblock %}
1 change: 1 addition & 0 deletions templates/show_plot.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ <h1 class="title">CAMELOT Query output</h1>
</div>
</div>
<div id="includedTable"></div>
<div id='footer'></div>
</body>
</html>

Expand Down
1 change: 1 addition & 0 deletions templates/upload_form.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,5 @@ <h1 class="title">CAMELOT Upload form</h1>
</form>
</div>
</div>
<div id='footer'></div>
{% endblock %}

0 comments on commit 09dee52

Please sign in to comment.