Commit 8fa9e8e852baf4b1e82a77dd8001454cd26933cd

Authored by Goutte
1 parent a79c5268

Hide a CDPP logo in the header.

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 {
... ...
web/static/img/header_logo.png 0 → 100644

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 -->
... ...