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
| a { | |
| color: saddlebrown; | |
| &:hover { | |
| color: wheat; | |
| } | |
| } |
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 (v3.3.12) | |
| // Compass (v1.0.0.alpha.21) | |
| // ---- | |
| // Applies the Open Sans font stack | |
| // | |
| // $weight - font weight | |
| // - Options: light, normal, semibold, bold | |
| @mixin opensans($weight: light) { |
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 (v3.3.14) | |
| // Compass (v1.0.0.rc.0) | |
| // ---- | |
| @mixin center { | |
| margin-left: auto; | |
| margin-right: auto; | |
| } |
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 (v3.3.14) | |
| // Compass (v1.0.0.rc.0) | |
| // ---- | |
| // Applies the Open Sans font stack | |
| // | |
| // $weight - font weight | |
| // - Options: light, normal, semibold, bold | |
| @mixin opensans($weight) { |
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 (v3.3.14) | |
| // Compass (v1.0.0.rc.0) | |
| // ---- | |
| // Applies the Open Sans font stack | |
| // | |
| // $weight - font weight | |
| // - Options: light, normal, semibold, bold | |
| @mixin opensans($weight) { |
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
| <a href="#" class="button-primary">Primary button</a> | |
| <a href="#" class="button-secondary">Secondary button</a> |
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
| <a href="#" class="button-primary">Primary button</a> | |
| <a href="#" class="button-secondary">Secondary button</a> |
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 (v3.3.14) | |
| // Compass (v1.0.0.rc.0) | |
| // ---- | |
| .button { | |
| padding: 1em 2em; | |
| font-family: Avenir, Helvetica, sans-serif; | |
| letter-spacing: 1px; | |
| text-transform: uppercase; |
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 (v3.3.14) | |
| // Compass (v1.0.0.rc.0) | |
| // ---- | |
| %button { | |
| padding: 1em 2em; | |
| font-family: Avenir, Helvetica, sans-serif; | |
| letter-spacing: 1px; | |
| text-transform: uppercase; |
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 (v3.3.14) | |
| // Compass (v1.0.0.rc.0) | |
| // ---- | |
| // Applies the Open Sans font stack | |
| // | |
| // $weight - font weight | |
| // - Options: light, normal, semibold, bold | |
| %opensans { |