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 'sass', '~> 3.3' | |
| gem 'breakpoint', '~> 2.4' |
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
| <button class="Btn">Just a Button</button> | |
| <button class="Btn--disabled">Disabled Button</button> | |
| <button class="Btn-secondary">Secondary Button</button> | |
| <button class="Btn-secondary--disabled">Secondary Disabled Button</button> |
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
| <button class="Btn">Just a Button</button> | |
| <button class="Btn--disabled">Disabled Button</button> | |
| <button class="Btn-secondary">Secondary Button</button> | |
| <button class="Btn-secondary--disabled">Secondary Disabled Button</button> |
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
| <button class="Btn">Just a Button</button> | |
| <button class="Btn Btn--disabled">Disabled Button</button> | |
| <button class="Btn Btn-secondary">Secondary Button</button> | |
| <button class="Btn Btn-secondary Btn--disabled">Secondary Disabled Button</button> |
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
| <div class="my-AwesomeBox my-AwesomeBox--small"> | |
| <h1 class="my-AwesomeBox-title">Small Box</h1> | |
| </div> | |
| <div class="my-AwesomeBox"> | |
| <h1 class="my-AwesomeBox-title">Normal Title</h1> | |
| </div> | |
| <div class="my-AwesomeBox"> | |
| <h1 class="my-AwesomeBox-title my-AwesomeBox-title--large">Large Title</h1> |
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
| <div class="my-AwesomeBox my-AwesomeBox--small"> | |
| <h1 class="my-AwesomeBox-title">Small Box</h1> | |
| </div> | |
| <div class="my-AwesomeBox"> | |
| <h1 class="my-AwesomeBox-title">Normal Title</h1> | |
| </div> | |
| <div class="my-AwesomeBox"> | |
| <h1 class="my-AwesomeBox-title my-AwesomeBox-title--large">Large Title</h1> |
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
| <div class="my-AwesomeBox my-AwesomeBox--small"> | |
| <h1 class="my-AwesomeBox-title">Small Box</h1> | |
| </div> | |
| <div class="my-AwesomeBox"> | |
| <h1 class="my-AwesomeBox-title">Normal Title</h1> | |
| </div> | |
| <div class="my-AwesomeBox"> | |
| <h1 class="my-AwesomeBox-title my-AwesomeBox-title--large">Large Title</h1> |
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
| <div class="my-AwesomeBox my-AwesomeBox--small"> | |
| <h1 class="my-AwesomeBox-title">Small Box</h1> | |
| </div> | |
| <div class="my-AwesomeBox"> | |
| <h1 class="my-AwesomeBox-title">Normal Title</h1> | |
| </div> | |
| <div class="my-AwesomeBox"> | |
| <h1 class="my-AwesomeBox-title my-AwesomeBox-title--large">Large Title</h1> |
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.4.6) | |
| // Compass (v1.0.1) | |
| // ---- | |
| @mixin desc($names...) { | |
| @each $name in $names { | |
| @at-root &-#{$name} { @content; } | |
| } | |
| } |
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
| <div class="Table"> | |
| <div class="Table-row Table-header"> | |
| <div class="Table-row-item u-Flex-grow2">Long Header1</div> | |
| <div class="Table-row-item">Header2</div> | |
| <div class="Table-row-item">Header3</div> | |
| <div class="Table-row-item">Header4</div> | |
| <div class="Table-row-item u-Flex-grow3">Longer Header5</div> | |
| <div class="Table-row-item">Header6</div> | |
| <div class="Table-row-item">Header7</div> | |
| </div> |