瀏覽代碼

Minor layout/style changes

tags/last-sinatra-version
Adrian Short 14 年之前
父節點
當前提交
4cd1a58350
共有 4 個文件被更改,包括 32 次插入9 次删除
  1. +22
    -9
      app.rb
  2. +0
    -0
      public/favicon.ico
  3. 二進制
      public/od_80x15_blue.png
  4. +10
    -0
      public/style.css

+ 22
- 9
app.rb 查看文件

@@ -29,26 +29,39 @@ __END__
%title Find My Candidates
%link{ :rel => 'stylesheet', :type => 'text/css', :href => 'style.css' }
%body
#main
#header
%h1 Find My Candidates
#main
= yield
#footer
%hr/
%p Design by Adrian Short
%p
Made by
%a{ :href => "http://adrianshort.co.uk/" } Adrian Short
with
%a{ :href => "http://www.ordnancesurvey.co.uk/oswebsite/products/code-point-open/" } Ordnance Survey
and
%a{ :href => "http://www.sutton.gov.uk/" } Sutton Council
data,
%a{ :href => "http://uk-postcodes.com" } UK Postcodes API
and
%a{ :href => "http://sinatrarb.com" } Sinatra.
%p
Hosted by
%a{ :href => "http://heroku.com" } Heroku.
Source at
%a{ :href => "http://github.com/adrianshort" } Github.

@@home
%form{ :method => 'get', :action => '/wards' }
%label{ :for => "postcode" }
Postcode
%input{ :type => 'text', :name => 'postcode', :size => 10 }
%label{ :for => "postcode" } Postcode
%input{ :type => 'text', :name => 'postcode', :size => 8, :maxlength => 8 }
%input{ :type => 'submit', :value => "Find" }
- for ward in @wards
%p= ward
@@wards
%h2
#{@ward_name} Ward in #{@district_name}
%p
Your postcode is #{@postcode}
%h2 #{@postcode} is in #{@ward_name} Ward in #{@district_name}

+ 0
- 0
public/favicon.ico 查看文件


二進制
public/od_80x15_blue.png 查看文件

Before After
Width: 80  |  Height: 15  |  Size: 446 B

+ 10
- 0
public/style.css 查看文件

@@ -1,4 +1,14 @@
body
{
background-color: beige;
font-family: Helvetica, Arial, sans-serif;
width: 760px;
margin: 40px auto;
}

input
{
font-size: 150%;
text-transform: uppercase;
}

Loading…
取消
儲存