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 printing a linear-gradient | |
| /// as well as a plain color fallback | |
| /// and the `-webkit-` prefixed declaration | |
| /// @access public | |
| /// @param {Keyword | Angle} $direction - Linear gradient direction | |
| /// @param {Arglist} $color-stops - List of color-stops composing the gradient | |
| @mixin linear-gradient($direction, $color-stops...) { | |
| // Direction has been omitted and happens to be a color-stop | |
| @if is-direction($direction) == false { | |
| $color-stops: $direction, $color-stops; |
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
| function getAndroidVersion(ua) { | |
| ua = (ua || navigator.userAgent).toLowerCase(); | |
| var match = ua.match(/android\s([0-9\.]*)/); | |
| return match ? match[1] : false; | |
| }; | |
| var androidVersion = parseFloat(getAndroidVersion()); | |
| if (androidVersion === 4.4) { | |
| // .. | |
| } |
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
| .copySuccess, | |
| .copyError { | |
| width: 300px; | |
| height: 75px; | |
| display: none; | |
| padding: 0; | |
| margin: auto; | |
| position: fixed; |
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
| var gulp = require('gulp'); | |
| var browserify = require('browserify'); | |
| var notify = require('gulp-notify'); | |
| var source = require('vinyl-source-stream'); | |
| var watchify = require('watchify'); | |
| var plumber = require('gulp-plumber'); | |
| var less = require('gulp-less'); | |
| var csso = require('gulp-csso'); | |
| var watch = require('gulp-watch'); | |
| var envify = require('envify'); |
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
| .colors { | |
| background-color: #153e78; | |
| } |
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
| /* | |
| Ratings Stars | |
| (with as little code as possible) | |
| */ | |
| .rating { | |
| unicode-bidi: bidi-override; | |
| direction: rtl; | |
| text-align: center; | |
| } | |
| .rating > span { |
NewerOlder