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 drop-down($background: #fff, $textColor: #383736, $borderColor: $brand-primary) { | |
| display: inline-block; | |
| border: none; | |
| position: relative; | |
| background-color: $background; | |
| margin-right: 13px; | |
| > span { | |
| color: #333; | |
| padding: 10px 42px 10px 15px; | |
| font-size: 16px; |
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
| // image caption rwd bg remove | |
| if ($('html').hasClass('fancybox-lock')) { | |
| var photo = $(".fancybox-image"); | |
| var caption = $(".fancy_texts"); | |
| if (photo.width() < caption.width()) { | |
| caption.css("background-color", "transparent"); | |
| caption.css("padding-left", "0"); | |
| caption.css("padding-right", "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
| ::-webkit-input-placeholder { | |
| color: $brand-primary; | |
| } | |
| :-moz-placeholder { /* Firefox 18- */ | |
| color: $brand-primary; | |
| } | |
| ::-moz-placeholder { /* Firefox 19+ */ | |
| color: $brand-primary; | |
| } | |
| :-ms-input-placeholder { |
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
| &:before, &:after { | |
| content: ""; | |
| position: absolute; | |
| display: block; | |
| margin: auto; | |
| left: 0; | |
| right: 0; | |
| top: 1px; | |
| bottom: 0; | |
| width: 15px; |
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
| &:after { | |
| content:""; | |
| display:table; | |
| clear:both; | |
| } |
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
| $('.subitems-depth-1 .current-menu-item').parents('.menu-item-depth-0').addClass('current-menu-item'); |
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 { | |
| >li { | |
| position: relative; | |
| &::before { | |
| display: inline-block; | |
| content: ''; | |
| height: 6px; | |
| width: 6px; | |
| background-color: $brand-primary; | |
| position: absolute; |
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
| display: inline-block; | |
| overflow: hidden; | |
| text-indent: -9999px; |
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
| &:after { | |
| content: ''; | |
| display: inline-block; | |
| margin-left: 7px; | |
| height: 0; | |
| border-style: solid; | |
| border-width: 5px 0 5px 5px; | |
| border-color: transparent transparent transparent $pink; | |
| } |
OlderNewer