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
* { | |
box-sizing: border-box; | |
} | |
body { | |
margin: 0; | |
font-size: 21px; | |
} | |
.content { |
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 { | |
-webkit-appearance: none; /* Webkit */ | |
-moz-appearance: none; /* FF */ | |
-ms-appearance: none; /* Edge */ | |
appearance: none; /* Future */ | |
/* Optional styles */ | |
padding: 0.3em 1.5em 0.3em 0.6em; | |
border: 1px solid currentColor; | |
background: white; |
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 sass = require('gulp-sass'); | |
var rework = require('gulp-rework'); | |
var inline = require('rework-plugin-inline'); | |
var autoprefixer = require('gulp-autoprefixer'); | |
gulp.task('default', function () { | |
gulp.src('*.scss') | |
.pipe(sass({ // SASS will just ignore rework functions such as inline() but will print them out | |
onSuccess: function(css){ |