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 | |
content: '●' | |
position: absolute | |
width: 1px | |
height: 100% | |
background-color: $gray | |
color: $accent | |
font-size: 28px | |
line-height: 220% | |
text-indent: -8px |
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
// npm i gulp-sass browser-sync gulp-cssnano gulp-rename del gulp-autoprefixer gulp-notify --save-dev | |
var gulp = require('gulp'), // Подключаем Gulp | |
sass = require('gulp-sass'); //Подключаем Sass пакет | |
browserSync = require('browser-sync'); // Подключаем Browser Sync | |
cssnano = require('gulp-cssnano'), // Подключаем пакет для минификации CSS | |
rename = require('gulp-rename'); // Подключаем библиотеку для переименования файлов | |
del = require('del'); // Подключаем библиотеку для удаления файлов и папок | |
autoprefixer = require('gulp-autoprefixer'); | |
notify = require( 'gulp-notify' ); |
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
.btn-class | |
display: inline-block | |
border: 1px solid #C9AE34 | |
color: #000000 | |
border-radius: 3px | |
-webkit-border-radius: 3px | |
-moz-border-radius: 3px | |
font-size: 18px | |
padding: 10px 40px | |
box-shadow: inset 0 1px 0 0 #FFF6CE,inset 0 -1px 0 0 #E3C852,inset 0 0 0 1px #FCE88D,0 2px 4px 0 #D4D4D4 |