This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Sets container background to black | |
.thumbnail .thumb_image { | |
background-color: black; | |
} | |
// Sets the 'mouseout' transition speed | |
.thumb_image img { | |
transition: opacity 0.25s ease-out; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Sets container background to black | |
.thumbnail .thumb_image { | |
background-color: black; | |
} | |
// Sets the 'mouseout' transition speed | |
.thumb_image { | |
transition: opacity 0.25s ease-out; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PING twc.com (71.74.42.231): 56 data bytes | |
64 bytes from 71.74.42.231: icmp_seq=0 ttl=52 time=147.727 ms | |
64 bytes from 71.74.42.231: icmp_seq=1 ttl=52 time=148.248 ms | |
64 bytes from 71.74.42.231: icmp_seq=2 ttl=52 time=154.562 ms | |
64 bytes from 71.74.42.231: icmp_seq=3 ttl=52 time=141.598 ms | |
64 bytes from 71.74.42.231: icmp_seq=4 ttl=52 time=142.905 ms | |
64 bytes from 71.74.42.231: icmp_seq=5 ttl=52 time=138.562 ms | |
64 bytes from 71.74.42.231: icmp_seq=6 ttl=52 time=160.779 ms | |
64 bytes from 71.74.42.231: icmp_seq=7 ttl=52 time=155.555 ms | |
64 bytes from 71.74.42.231: icmp_seq=8 ttl=52 time=148.392 ms |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media only screen and (min-width: 1258px) { | |
.t-element:first-child { | |
margin-left: 159px; | |
} | |
} | |
@media only screen and (max-width: 1258px) { | |
.t-element:last-child { | |
margin-left: 159px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WARNING: Nokogiri was built against LibXML version 2.7.8, but has dynamically loaded 2.9.0 | |
=> Booting Thin | |
=> Rails 3.2.13 application starting in development on http://0.0.0.0:3000 | |
=> Call with -d to detach | |
=> Ctrl-C to shutdown server | |
Exiting | |
/Users/iMacG5/.rvm/gems/ruby-1.9.3-p327/gems/railties-3.2.13/lib/rails/application/configuration.rb:115:in `read': No such file or directory - /Users/iMacG5/Quickdraw/Sites/JPR_2634/config/database.yml (Errno::ENOENT) | |
from /Users/iMacG5/.rvm/gems/ruby-1.9.3-p327/gems/railties-3.2.13/lib/rails/application/configuration.rb:115:in `database_configuration' | |
from /Users/iMacG5/.rvm/gems/ruby-1.9.3-p327/gems/activerecord-3.2.13/lib/active_record/railtie.rb:78:in `block (2 levels) in <class:Railtie>' | |
from /Users/iMacG5/.rvm/gems/ruby-1.9.3-p327/gems/activesupport-3.2.13/lib/active_support/lazy_load_hooks.rb:36:in `instance_eval' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="secondary_nav_links"> | |
<span class="secondary-link"><a href="/email-signup/ Ed">Email Sign-up</a></span> | |
<span class="secondary-link"><a href="/rewards-programs/cloud-9/">Cloud 9 Login</a> | <a href="#">Signup</a></span> | |
<span class="secondary-link"><a href="/rewards-programs/corporate-accounts/ ">Corporate Accounts</a></span> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//MODIFY SITE URL uncomment below and load admin page | |
//update_option('siteurl','http://dev.islandair.com'); | |
//update_option('home','http://dev.islandair.com'); | |
/* Disable the Admin Bar. */ | |
add_filter( 'show_admin_bar', '__return_false' ); | |
//register the custom menus | |
function register_my_menus() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-moz-document url-prefix() { | |
.css-classes-here { | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
== File.read(File.join(File.dirname(__FILE__), '_footer.html')) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
h6 Start Date | |
p #{@event.starts_at.strftime("%B %e %Y, %m:%M %p ")} | |
h6 End Date | |
p #{@event.starts_at.strftime("%B %e %Y, %m:%M %p ")} | |
p #{@event.ends_at.strftime("%B %e %Y, %m:%M %p ")} // Fix? |