Procházet zdrojové kódy

Remove Pure CSS dependency

Create our own menu styles
tags/v2.0.0
Adrian Short před 6 roky
rodič
revize
00c0206caa
2 změnil soubory, kde provedl 25 přidání a 15 odebrání
  1. +12
    -0
      public/style.css
  2. +13
    -15
      views/layout.haml

+ 12
- 0
public/style.css Zobrazit soubor

@@ -294,6 +294,18 @@ nav
padding: 20px 20px; 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 { @media print {
.noprint, #footer, .nav, nav .noprint, #footer, .nav, nav
{ {


+ 13
- 15
views/layout.haml Zobrazit soubor

@@ -2,7 +2,6 @@
%html %html
%head %head
%title= @page_title ? @page_title + " - Sutton Elections" : "Sutton Elections - Your guide to voting and election results in the London Borough of Sutton" %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' } %link{ :rel => 'stylesheet', :type => 'text/css', :href => '/style.css' }
%meta{ :name => 'referrer', :content => 'no-referrer' } %meta{ :name => 'referrer', :content => 'no-referrer' }
%meta{ :name => 'viewport', :content => 'width=device-width, initial-scale=1' } %meta{ :name => 'viewport', :content => 'width=device-width, initial-scale=1' }
@@ -11,20 +10,19 @@
#header.noprint #header.noprint
#header_inner #header_inner
%h1 Sutton Elections %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 #main


Načítá se…
Zrušit
Uložit