Function | Shortcut |
---|---|
Previous Tab | ⌘ + Left Arrow |
Next Tab | ⌘ + Right Arrow |
Go to Tab | ⌘ + Number |
Go to Window | ⌘ + Option + Number |
Go to Split Pane by Direction | ⌘ + Option + Arrow |
Go to Split Pane by Order of Use | ⌘ + ] , ⌘ + [ |
This file contains 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
<input type="text" onfocus="if(this.value === 'Value') { this.value = ''; }" onblur="if(this.value === '') { this.value = 'Value'; }" value="Value" name="" |
This file contains 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
$(document).ready(function(){ | |
$("#box").on('scroll', function(){ | |
$(this).css('top',($(document).scrollTop()) + 20); | |
}); | |
}); |
This file contains 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
ol { | |
list-style-type: none; | |
list-style-type: decimal !ie; /*IE 7- hack*/ | |
margin: 0; | |
margin-left: 3em; | |
padding: 0; | |
counter-reset: li-counter; | |
} |
This file contains 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 print { | |
a:after { | |
content:" (" attr(href) ") "; font-size:0.8em; font-weight:normal; | |
} | |
} |
This file contains 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
sass --compass --watch scss/style.scss:css/style.css --style compressed |
This file contains 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
# Require any additional compass plugins here. | |
# The starting contents for config.rb | |
# Set this to the root of your project when deployed: | |
http_path = "../" | |
css_dir = "css" # Set this to the directory of your current css files: | |
sass_dir = "scss" | |
images_dir = "images" # Set this to the directory of your current images files: | |
javascripts_dir = "js" # Set this to the directory of your current JavaScript files: |
NewerOlder