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
Verifying that +joshuatuscan is my blockchain ID. https://onename.com/joshuatuscan |
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 rounded-corners-all($radius) { | |
-webkit-border-radius: $radius; | |
-moz-border-radius: $radius; | |
border-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 round-corners($top-left, $top-right, $bottom-right, $bottom-left) { | |
-webkit-border-top-left-radius: $top-left; | |
-webkit-border-top-right-radius: $top-right; | |
-webkit-border-bottom-right-radius: $bottom-right; | |
-webkit-border-bottom-left-radius: $bottom-left; | |
-moz-border-radius-topleft: $top-left; | |
-moz-border-radius-topright: $top-right; | |
-moz-border-radius-bottomright: $bottom-right; | |
-moz-border-radius-bottomleft: $bottom-left; | |
border-top-left-radius: $top-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
@mixin bg-gradient-linear($bottom-color, $top-color) { | |
background-color: $bottom-color; | |
background-image: -ms-linear-gradient(bottom, $bottom-color 0%, $top-color 100%); | |
background-image: -moz-linear-gradient(bottom, $bottom-color 0%, $top-color 100%); | |
background-image: -o-linear-gradient(bottom, $bottom-color 0%, $top-color 100%); | |
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, $bottom-color), color-stop(1, $top-color)); | |
background-image: -webkit-linear-gradient(bottom, $bottom-color 0%, $top-color 100%); | |
background-image: linear-gradient(to top, $bottom-color 0%, $top-color 100%); | |
} |