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
~/Workspace/mlb11site passenger start | |
=============== Phusion Passenger Standalone web server started =============== | |
PID file: /Users/alland/Workspace/mlb11site/tmp/pids/passenger.3000.pid | |
Log file: /Users/alland/Workspace/mlb11site/log/passenger.3000.log | |
Environment: development | |
Accessible via: http://0.0.0.0:3000/ | |
You can stop Phusion Passenger Standalone by pressing Ctrl-C. | |
=============================================================================== | |
NOTE: Gem.available? is deprecated, use Specification::find_by_name. It will be removed on or after 2011-11-01. |
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
/************ GENERAL ************/ | |
body { | |
font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; | |
color: #555555; | |
background: #343434; | |
font-size: 14px; | |
} | |
.pageWrapper, | |
.footerWrapper { | |
/*min-width: 960px; correct width*/ |
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 class="pngfix" id="leaderboard_box_content"> | |
<style> | |
.leaderboard_matrix { | |
width: 790px; margin: 0 auto; padding: 10px; background: rgba(0,0,0,0.2); border-radius: 15px} | |
.leaderboard_matrix img { | |
float: left; | |
margin: 15px; |
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
~/Workspace/lbpk/community where | |
allans_lbpk | |
* lbpk | |
master | |
remotes/origin/HEAD -> origin/master | |
remotes/origin/lbpk | |
remotes/origin/lbpk_ui | |
remotes/origin/master | |
remotes/origin/serverctl | |
~/Workspace/lbpk/community git commit -m 'merge conflict (git was complaining about divergence and rebasing and I didn't want to take any chances so I created a new branch based on my diverged lbpk branch, and named it allans_lbpk. Then I merged allans_lbpk into emanuele's lbpk. Will delete allans_lbpk after this merge)' |
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
/* equal heights ------------ */ | |
(function($) { | |
$.fn.equalHeights = function(minHeight, maxHeight) { | |
tallest = (minHeight) ? minHeight : 0; | |
this.each(function() { | |
if($(this).height() > tallest) { | |
tallest = $(this).height(); | |
} | |
}); | |
if((maxHeight) && tallest > maxHeight) tallest = maxHeight; |
OlderNewer