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="bx-btn--primary"> | |
| primary 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
| /////////////////////// | |
| // Requires | |
| /////////////////////// | |
| var gulp = require('gulp'); | |
| var uglify = require('gulp-uglify'); | |
| var sass = require('gulp-sass'); | |
| /////////////////////// | |
| // Tasks |
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 --> |
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
| // ---- | |
| // libsass (v3.2.5) | |
| // ---- | |
| @mixin type($color, $size, $weight) { | |
| font-family: 'Helvetica', sans-serif; | |
| color: $color; | |
| font-size: $size; | |
| font-weight: $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
| <body class="bx-theme"> | |
| <h1 class="h1--base">Header</h1> | |
| </body> |
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 --> | |
| <h1> blah</h1> | |
| <h2 class="hi">hi</h2> |
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 --> | |
| <h1> blah</h1> | |
| <h2 class="hi">hi</h2> |
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="container"> | |
| <div class="ibm-colors"> | |
| <h1>IBM Colors</h1> | |
| <div class="blue-10">$blue-10</div> | |
| <div class="blue-20"></div> | |
| <div class="blue-30"></div> | |
| <div class="blue-40"></div> | |
| <div class="blue-90"></div> | |
| <div class="gray"></div> | |
| <div class="green"></div> |
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
| <h1>Blue</h1> | |
| <div class="container"> | |
| <div class="blue-dark"> | |
| <strong>blue-dark</strong> | |
| <p>aka blue-70-mod</p> | |
| <p>bluemix-color('blue-70')</p> | |
| <p>#2D3F49</p> | |
| <p>Page bg</p> | |
| </div> | |
| <div class="blue-darker"> |
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
| // ---- | |
| // libsass (v3.2.5) | |
| // ---- | |
| $white: #fff; | |
| @mixin type($size, $color: $white) { | |
| font-family: 'IBM Helvetica', Helvetica Neue, HelveticaNeue, Helvetica, sans-serif; | |
| font-size: $size; | |
| color: $color; |