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
| <ul class="o-list-fit c-nav-primary"> | |
| <li class="o-list-fit__item c-nav-primary__item"> | |
| <a href="#" class="o-list-fit__link c-nav-primary__link">The workshop</a> | |
| </li> | |
| <li class="o-list-fit__item c-nav-primary__item"> | |
| <a href="#" class="o-list-fit__link c-nav-primary__link">2013 Schedule</a> | |
| </li> | |
| <li class="o-list-fit__item c-nav-primary__item"> | |
| <a href="#" class="o-list-fit__link c-nav-primary__link is-current">About CSS Wizardry</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
| if (WCMMode.fromRequest(request) != WCMMode.EDIT && WCMMode.fromRequest(request) != WCMMode.DESIGN) { | |
| IncludeOptions.getOptions(request, true).forceSameContext(Boolean.TRUE); |
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
| git fetch --all | |
| git reset --hard origin/master |
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
| @mixin position-centrally() { | |
| bottom: 0; | |
| left: 0; | |
| margin: auto; | |
| position: absolute; | |
| right: 0; | |
| top: 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
| @mixin triangle($size: 10px, $direction: right, $color: #000000) { | |
| width: 0; | |
| height: 0; | |
| @if $direction == 'up' { | |
| border-left: $size solid transparent; | |
| border-right: $size solid transparent; | |
| border-bottom: $size solid $color; | |
| } |