Created
April 21, 2015 04:37
-
-
Save hellobrian/f74eae67177f0156235a to your computer and use it in GitHub Desktop.
RPbmvE
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="ui-container"> | |
| <h1 class="bold"> | |
| <span class="light">IBM</span> Bluemix | |
| </h1> | |
| <h2 class="bold"> | |
| <span class="light">IBM</span> Bluemix | |
| </h2> | |
| <h3 class="bold"> | |
| <span class="light">IBM</span> Bluemix | |
| </h3> | |
| <h4 class="bold"> | |
| <span class="light">IBM</span> Bluemix | |
| </h4> | |
| <h5 class="bold"> | |
| <span class="light">IBM</span> Bluemix | |
| </h5> | |
| <h6 class="bold"> | |
| <span class="light">IBM</span> Bluemix | |
| </h6> | |
| <p class="bold"> | |
| <span class="light">IBM</span> Bluemix | |
| </p> | |
| </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
| %helvetica { | |
| font-family: HelveticaNeue, Helvetica Neue, Helvetica, sans-serif; | |
| } | |
| %helvetica-light { | |
| @extend %helvetica; | |
| font-weight: 200; | |
| } | |
| %helvetica-bold { | |
| @extend %helvetica; | |
| font-weight: 700; | |
| } | |
| %font-smoothing { | |
| font-smoothing: antialiased; | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| /* letter-spacing: .01em; */ | |
| letter-spacing: 1px; | |
| } | |
| $modified-blue-70: #2d3f4a; | |
| $ibm-cool-grey-4: #ecf0f2; | |
| $dark-interface: $modified-blue-70; | |
| $text-on-dark-interface: $ibm-cool-grey-4; | |
| .ui-container { | |
| background-color: $dark-interface; | |
| } | |
| .bold { | |
| color: $text-on-dark-interface; | |
| @extend %helvetica-bold; | |
| @extend %font-smoothing; | |
| .light { | |
| @extend %helvetica-light; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment