make more use of bulma variables
This commit is contained in:
parent
833a490ccc
commit
0e2afe07b6
4 changed files with 5 additions and 11 deletions
|
@ -2,10 +2,6 @@
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
}
|
}
|
||||||
|
|
||||||
html, .footer {
|
|
||||||
background-color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hero {
|
.hero {
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
|
|
|
@ -2,6 +2,9 @@
|
||||||
$zeus-orange: #FF7F00;
|
$zeus-orange: #FF7F00;
|
||||||
$zeus-blue: #00C4FF;
|
$zeus-blue: #00C4FF;
|
||||||
|
|
||||||
|
$background: white;
|
||||||
|
$body-background: $background;
|
||||||
|
|
||||||
$tile-orange: #ff9f1a;
|
$tile-orange: #ff9f1a;
|
||||||
|
|
||||||
$navbar-border-color: #CCC;
|
$navbar-border-color: #CCC;
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="tile">
|
<div class="tile">
|
||||||
<div class="tile is-parent is-4">
|
<div class="tile is-parent is-4">
|
||||||
<%= render '/partials/_tile.*', article: upcoming_events[0], small_text: "Upcoming event" %>
|
<%= render '/partials/_tile.*', article: upcoming_events[0] || all_events[-1], small_text: "Upcoming event" %>
|
||||||
</div>
|
</div>
|
||||||
<div class="tile is-parent is-4">
|
<div class="tile is-parent is-4">
|
||||||
<div class="tile is-child box centering">
|
<div class="tile is-child box centering">
|
||||||
|
@ -48,9 +48,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="tile is-vertical">
|
<div class="tile is-vertical">
|
||||||
<div class="tile is-parent">
|
<div class="tile is-parent">
|
||||||
<% if upcoming_events[1] %>
|
<%= render '/partials/_tile.*', article: upcoming_events[1] || all_events[-2], small_text: "Upcoming event" %>
|
||||||
<%= render '/partials/_tile.*', article: upcoming_events[1], small_text: "Upcoming event" %>
|
|
||||||
<% end %>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -25,9 +25,6 @@
|
||||||
<%= asset :js, :tipuesearch %>
|
<%= asset :js, :tipuesearch %>
|
||||||
<%= asset :js, :search %>
|
<%= asset :js, :search %>
|
||||||
|
|
||||||
<!-- Place this tag in your head or just before your close body tag. -->
|
|
||||||
<script async defer src="https://buttons.github.io/buttons.js"></script>
|
|
||||||
|
|
||||||
<!-- Google Analytics -->
|
<!-- Google Analytics -->
|
||||||
<script>
|
<script>
|
||||||
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
|
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
|
||||||
|
|
Loading…
Reference in a new issue