Skip to content

Commit 4faea78

Browse files
authored
updating launcher image (#154)
* updating launcher image * display image regardless of login status
1 parent f658390 commit 4faea78

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

app/static/assets/banner-code.png

36.1 KB
Loading

app/static/assets/css.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ body {
1818

1919
.jumbotron {
2020

21-
background: #000 !important;
21+
background-image: url(/static/assets/banner-code.png) !important;
22+
background-position: right;
23+
min-height: 500px;
2224
padding-top: 0 !important;
2325
padding-bottom: 0 !important;
2426
padding-left: 30px !important;

app/templates/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ <h3>Working...&nbsp;&nbsp;&nbsp;<span></span></h3>
7070
<p id="download-continue" class="feedback"><a href="/">c</a></p>
7171

7272
{% if 'ds_user_name' in session %}
73-
<div class="container">
73+
<div class="container-full-bg">
7474
<section id="content" style="padding-top:30px;">
7575
{% else %}
7676
<div class="container-full-bg">

app/templates/home.html

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,23 @@
22
{% extends "base.html" %}
33

44
{% block content %}
5-
6-
{% if not 'ds_user_name' in session %}
7-
<!-- IF not signed in -->
85
<div>
96
<div class="jumbotron jumbotron-fluid"> <table>
7+
</br>
108
<tbody>
119
<tr>
1210
<td>
1311
<h1 class="display-4">Python Launcher</h1>
1412
<p class="Xlead">{{ session['manifest']['SupportingTexts']['HomePageText'] }}</p>
1513
</td>
14+
</tr>
15+
<tr>
1616
<td>
17-
<img src="/static/assets/banner-code.png" />
1817
</td>
1918
</tr>
2019
</tbody>
2120
</table>
2221
</div>
23-
{% endif %}
2422

2523
<!-- Future: add a table of contents or navigation pane
2624
Eg, see https://stackoverflow.com/questions/21868610/make-column-fixed-position-in-bootstrap

0 commit comments

Comments
 (0)