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
/* Layered Paper */ | |
.layered-paper { | |
background: #eee; | |
box-shadow: | |
0 1px 1px rgba(0,0,0,0.15), /* The top layer shadow */ | |
0 10px 0 -5px #eee, /* The second layer */ | |
0 10px 1px -4px rgba(0,0,0,0.15), /* The second layer shadow */ | |
0 20px 0 -10px #eee, /* The third layer */ | |
0 20px 1px -9px rgba(0,0,0,0.15); /* The third layer shadow */ | |
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 | |
/* | |
Plugin Name: Disable plugins when doing local dev | |
Description: If the WP_LOCAL_DEV constant is true, disables plugins that you specify | |
Version: 0.1 | |
License: GPL version 2 or any later version | |
Author: Mark Jaquith | |
Author URI: http://coveredwebservices.com/ | |
*/ |
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
load 'deploy' if respond_to?(:namespace) # cap2 differentiator | |
default_run_options[:pty] = true | |
# be sure to change these | |
set :github_user, '<github_user_name>' | |
set :github_application, "<repository_name>" | |
set :user, '<user_on_server>' | |
set :domain, '<server_name>' | |
set :application, '<domain_name_of_static_site>' |