"emmet.syntaxProfiles": {
"html": {
"filters": "html, bem"
}
},
"emmet.preferences": {
"bem.elementSeparator": "__",
"bem.modifierSeparator": "--",
"bem.shortElementPrefix": "-",
"lorem.defaultLang": "en"
},
filter.commentTrigger:
- list of attributes that should trigger comment output. Default value is id, class
"emmet.preferences": {
"filter.commentBefore": "<!-- [#ID][.CLASS] -->\n",
"filter.commentAfter": "\n<!-- [#ID][.CLASS] end -->"
},
"emmet.syntaxProfiles": {
"html" : {
"filters" : "html, c"
}
},
transform: translateY(0);
opacity: 0
transition: transform .3s ease-in-out, opacity .3s ease-in-out
transform: translateY(10px);
opacity: 1
gulp.task('css:build', function () {
gulp.src(['./src/scss/style.scss', './src/scss/style-main.scss'])
/* или так return gulp.src('./src/sсss/*.sсss') // "*" - означает, что будут браться и обрабатываться все файлы с расширением scss из этой дирректории */
.pipe(plumber())
.pipe(sass().on('error', sass.logError))
.pipe(autoprefixer({
browsers: ['last 5 versions'],
cascade: true
}))
.pipe(removeComments())
.pipe(cssbeautify())
.pipe(cssnano({
zindex: false,
discardComments: {
removeAll: true
}
}))
.pipe(rename('style.min.css'))
.pipe(gulp.dest(path.build.css))
.pipe(webserver.reload({stream: true}));
});
textarea::-webkit-scrollbar-corner {
background-color: #212429
}
.кнопка {
display: none;
}
.таблица:hover .кнопка {
display: block;
}
.btn {
display: none;
}
.table:hover .btn {
display: block;
}
npm install jquery --save-dev
1. bower init
2. bower install jquery --save-dev (--allow-root если с рут правами в терминале ставишь)