diff --git a/static/css/app.css b/static/css/app.css index 5b8b702..dcb9c7f 100644 --- a/static/css/app.css +++ b/static/css/app.css @@ -2990,8 +2990,11 @@ body { .hud-section-weather .degree-symbol { margin-left: -0.2em; } -.hud-section-weather .hud-section-weather-current { +.hud-section-weather-current { font-size: 60px; } +.hud-section-weather-line { + float: left; + width: 100%; } .hud-section-subway .hud-section-subway-line { display: inline-block; diff --git a/static/css/app.sass b/static/css/app.sass index 2a943f1..9eba8dd 100644 --- a/static/css/app.sass +++ b/static/css/app.sass @@ -97,9 +97,13 @@ body .degree-symbol margin-left: -0.2em - .hud-section-weather-current + &-current font-size: $text-size-secondary + &-line + float: left + width: 100% + .hud-section-subway .hud-section-subway-line display: inline-block diff --git a/templates/index.html b/templates/index.html index 87e5b8c..1c73043 100644 --- a/templates/index.html +++ b/templates/index.html @@ -42,18 +42,27 @@

<% } %>
  • - <% if (d.weather.preview.tomorrow) { %> - Tomorrow: + <% if (d.weather.preview.tomorrow) { %> + + Tomorrow: + <%= d.weather.preview.low %> + / + <%= d.weather.preview.high %> + + + <%= d.weather.preview.summary %> + + <% } else { %> + + <%= d.weather.preview.low %> + / + <%= d.weather.preview.high %> + <%= d.weather.preview.summary %> + <% } %> - <%= d.weather.preview.low %> - / - <%= d.weather.preview.high %> - <% if (d.weather.preview.tomorrow) { %> -
    - <% } %> - <%= d.weather.preview.summary %> -
    - <%= d.weather.preview.precip %>% chance of rain + + <%= d.weather.preview.precip %>% chance of rain +
  • <% } %>