Commit 8fa9e8e852baf4b1e82a77dd8001454cd26933cd
1 parent
a79c5268
Exists in
master
and in
3 other branches
Hide a CDPP logo in the header.
Showing
4 changed files
with
10 additions
and
3 deletions
Show diff stats
web/static/css/main.css
... | ... | @@ -53,7 +53,14 @@ footer { |
53 | 53 | |
54 | 54 | /** HEADER ********************************************************************/ |
55 | 55 | |
56 | -.header { | |
56 | +header.header { | |
57 | + background-image: url("../img/header_logo.png"); | |
58 | + background-repeat: no-repeat; | |
59 | + background-position: 15px center; | |
60 | +} | |
61 | + | |
62 | +.mdl-layout__header-row { | |
63 | + padding-left: 100px; | |
57 | 64 | } |
58 | 65 | |
59 | 66 | #version-number { | ... | ... |
2.04 KB
web/view/home.html.jinja2
... | ... | @@ -205,7 +205,7 @@ jQuery().ready(function($){ |
205 | 205 | 'dens', 'Density N (cm⁻³)', data['dens'], container |
206 | 206 | )); |
207 | 207 | timeSeries.push(new TimeSeries( |
208 | - 'angl', 'Angle T-S-E (deg)', data['angl'], container | |
208 | + 'angl', 'Angle S-S-E (deg)', data['angl'], container | |
209 | 209 | )); |
210 | 210 | // move outside after promises |
211 | 211 | timeSeries.forEach(function(ts){ | ... | ... |
web/view/layout.html.jinja2
... | ... | @@ -30,7 +30,7 @@ |
30 | 30 | |
31 | 31 | <div id="page-container" class="container"> |
32 | 32 | |
33 | - <header class="mdl-layout__header"> | |
33 | + <header class="header mdl-layout__header"> | |
34 | 34 | <div class="mdl-layout__header-row"> |
35 | 35 | <span class="mdl-layout-title">CDPP / Solar Wind Prediction @ Planets</span> |
36 | 36 | <!-- Add spacer, to align navigation to the right --> | ... | ... |