Browse Source

Remove Pure CSS dependency

Create our own menu styles
tags/v2.0.0
Adrian Short 6 years ago
parent
commit
00c0206caa
2 changed files with 25 additions and 15 deletions
  1. +12
    -0
      public/style.css
  2. +13
    -15
      views/layout.haml

+ 12
- 0
public/style.css View File

@@ -294,6 +294,18 @@ nav
padding: 20px 20px;
}

.menu {
margin: 0;
padding: 0;
}

.menu li {
list-style-type: none;
display: inline;
margin: 20px 0;
padding: 0 10px 0 0;
}

@media print {
.noprint, #footer, .nav, nav
{


+ 13
- 15
views/layout.haml View File

@@ -2,7 +2,6 @@
%html
%head
%title= @page_title ? @page_title + " - Sutton Elections" : "Sutton Elections - Your guide to voting and election results in the London Borough of Sutton"
<link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/pure-min.css" integrity="sha384-nn4HPE8lTHyVtfCBi5yW9d20FjT8BJwUXyWZT9InLYax14RDjBj46LmSztkmNP9w" crossorigin="anonymous">
%link{ :rel => 'stylesheet', :type => 'text/css', :href => '/style.css' }
%meta{ :name => 'referrer', :content => 'no-referrer' }
%meta{ :name => 'viewport', :content => 'width=device-width, initial-scale=1' }
@@ -11,20 +10,19 @@
#header.noprint
#header_inner
%h1 Sutton Elections
.pure-menu.pure-menu-horizontal
%ul.pure-menu-list
%li.pure-menu-item
%a{ :href => '/' } Home
- Body.each do |body|
%li.pure-menu-item
%a{ :href => "/bodies/#{body.slug}" }
= body.name
%li.pure-menu-item
%a{ :href => '/candidates' } Candidates
%li.pure-menu-item
%a{ :href => '/guides' } Guides
%li.pure-menu-item
%a{ :href => '/about' } About
%ul.menu
%li
%a{ :href => '/' } Home
- Body.each do |body|
%li
%a{ :href => "/bodies/#{body.slug}" }<
= body.name
%li
%a{ :href => '/candidates' } Candidates
%li
%a{ :href => '/guides' } Guides
%li
%a{ :href => '/about' } About

#main


Loading…
Cancel
Save