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
css_dir = "." | |
sass_dir = "." | |
line_comments = false |
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
#sidebar { | |
float: left; | |
width: 300px; } | |
@media only screen and (max-width: 479px) { | |
#sidebar { | |
float: none; } } | |
@media only screen and (min-width: 480px) and (max-width: 767px) { | |
#sidebar { | |
float: none; } } | |
@media only screen and (min-width: 768px) and (max-width: 959px) { |
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
"\e[1~": beginning-of-line | |
"\e[2~": yank | |
"\e[3~": delete-char | |
"\e[4~": end-of-line | |
"\e[5~": history-search-backward | |
"\e[6~": history-search-forward | |
$if term=xterm | |
"\e[2;5~": yank | |
"\e[3;5~": delete-char | |
"\e[5;5~": history-search-backward |
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
defc1 off | |
defencoding utf8 | |
defflow off # turn off stupid flow-control (also see: stty -ixon in ~/.zshrc) | |
altscreen on # restore window contents after "vim", etc. | |
ignorecase on # for searches | |
defscrollback 10000 # number of lines reachable via ^A<esc> | |
# defwrap off # screen's word wrap is not what you want | |
startup_message off | |
vbell_msg "" | |
defmonitor on |
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
table { | |
{ | |
color: green; | |
&.colortable { | |
color: blue; | |
{ | |
td { | |
text-align: center; | |
} | |
} |
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
module ViewHelpers | |
def body_classes | |
@body_classes ||= [] | |
end | |
def random( n ) | |
rand(n) | |
end |
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
module WEBrick | |
module HTTPServlet | |
class PhpHandler < AbstractServlet | |
def initialize(server, name) | |
super(server, name) if( server ) | |
@root_path = Compass.configuration.project_path | |
@script_filename = name | |
end |
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
source 'https://rubygems.org' | |
gem 'rails', '3.2.1' | |
# Bundle edge Rails instead: | |
# gem 'rails', :git => 'git://github.com/rails/rails.git' | |
gem 'sqlite3' | |
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
#data { | |
background: url(../images/sample.gif); | |
background: url(../images/bg.png) 5px 95% no-repeat; } | |
#data { | |
background: url(../images/default_sample.gif); | |
background: url(../images/default_bg.png) 5px 95% no-repeat; } |