Updated logo to opaque version

This commit is contained in:
Luke Barratt 2014-04-05 01:54:39 +01:00
parent 4b8d6920dc
commit 8b4bf75882
5 changed files with 11 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 95 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 153 KiB

View file

@ -8,14 +8,21 @@ div
padding-bottom: 30px
&#indexMain
position: relative
margin: 0 auto 0 auto
width: 1200px
padding-bottom: 20px
&#logo
width: 480px
height: 353px
position: absolute
top: 5px
background: image-url('logo.png') left -85px no-repeat
&#indexBanner
width: 100%
height: 194px
background: image-url('logo.png') left -55px no-repeat
position: relative
&#indexLogo

View file

@ -16,6 +16,7 @@
<body>
<div id="indexContainer">
<div id="indexMain">
<div id="logo"></div>
<%= render :partial => "layouts/header" %>
<div id="indexMainarea">

View file

@ -14,7 +14,7 @@ Capybara.register_driver :poltergeist do |app|
Capybara::Poltergeist::Driver.new(app, :phantomjs_logger => File.open('/dev/null'))
end
Capybara.javascript_driver = :selenium
Capybara.javascript_driver = :poltergeist
Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }
@ -30,7 +30,7 @@ RSpec.configure do |config|
config.before(:each) do
if example.metadata[:type] == :feature
Capybara.current_driver = :selenium
Capybara.current_driver = :poltergeist
else
Capybara.use_default_driver
end