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
| $(document).ready(function(){ | |
| $('a[href^="#"]').on('click',function (e) { | |
| e.preventDefault(); | |
| var target = this.hash, | |
| $target = $(target); | |
| $('html, body').stop().animate({ | |
| 'scrollTop': $target.offset().top | |
| }, 400, 'swing', function () { |
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
| <header id="top"> | |
| <h1>Eu sou um header</h1> | |
| </header> | |
| <nav role='navigation'> | |
| <ul> | |
| <li><a href="#top">Home</a></li> | |
| <li><a href="#sobre">About</a></li> | |
| <li><a href="#clientes">Clients</a></li> | |
| <li><a href="#contato">Contact Us</a></li> |
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
| .meuElemento { border-radius: 3px; } |
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
| sudo su -c "gem install sass" |
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
| // - - - - - VARIABLES - - - - - // | |
| // Create a variable with $ | |
| $primary-color: tomato; | |
| // Use your newborn variable | |
| h1 { | |
| color: $primary-color; | |
| } | |
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
| html, body, ul, ol { | |
| margin: 0; | |
| padding: 0; | |
| border: 0; | |
| } |
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
| gem install sass |
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
| sudo gem install sass |
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
| sass -v |
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
| // Create a variable with $ | |
| $primary-color: tomato; | |
| // Use your newborn variable | |
| h1 { | |
| color: $primary-color; | |
| } | |
| a { | |
| color: $primary-color; |
OlderNewer