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
.user-register input[type="submit"] { | |
border: none; | |
color: #FFFFFF; | |
float: right; | |
font-size: 15px; | |
height: 35px; | |
margin: 0 0 20px; | |
width: 150px; | |
-webkit-border-radius: 5px 5px 5px 5px; /* Chrome,Safari4+ */ |
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
Pedro Marins is Treehouse member at http://teamtreehouse.com/pedromarins | |
Nov 25, 2012 |
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
#----------# | |
# shell alias # | |
#----------# | |
alias ..='cd ..' | |
alias ...='cd ../../' | |
alias ....='cd ../../../' | |
alias .....='cd ../../../../' | |
alias ......='cd ../../../../../' | |
alias c="clear" |
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-box-sizing:border-box;- webkit-box-sizing:border-box; box-sizing:border-box; } | |
https://developer.mozilla.org/en-US/docs/Web/CSS/box-sizing?redirectlocale=en-US&redirectslug=CSS%2Fbox-sizing |
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
This snippet was created to improve my speed working with Hammer. | |
On a new file I just type hammer and hit tab to create a new file with all the stuff I need to start coding a new page. | |
This works fine for both the Standard Hammer Tamplate and the HTML5 Boilerplate Template. | |
To install it: | |
1. On your Sublime menu go to: Tools > New Snippet... | |
2. Paste the below code into the file. | |
3. Save as "hammer-new-page.sublime-snippet" |