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 border-radius($radius) { | |
| -moz-border-radius: $radius; | |
| -webkit-border-radius: $radius; | |
| -ms-border-radius: $radius; | |
| border-radius: $radius; | |
| } | |
| @mixin border-top-radius($radius) { | |
| -moz-border-top-left-radius: $radius; | |
| -moz-border-top-right-radius: $radius; |
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 vertical-padding($value) { | |
| padding-left: $value; | |
| padding-right: $value; | |
| } |
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 inline-block { | |
| ul { | |
| display: block; | |
| li { | |
| display: inline-block; | |
| float: left; | |
| } | |
| } | |
| } |
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
| .select-dropdown { | |
| position: relative; | |
| i { | |
| @include background-image(linearselect-gradient($white 0, darken($white, 2%) 100%, transparent 80%)); | |
| @include position(absolute, 1px 3% 0 0); | |
| background: $white; | |
| background: linear-gradient(top, $white, darken($white, 5%)); | |
| background: -o-linear-gradient(top, $white, darken($white, 5%)); | |
| background: -moz-linear-gradient(top, $white, darken($white, 5%)); |
NewerOlder