$(document).ready(function () {
$('.........').click(function () {
$('.........').slideUp('slow');
if ($(this).next().is(':hidden') == true) {
$(this).next().slideDown('slow');
}
});
$('.........').hide(); // Hide Content
$('.........').show(); // Show the "Home" content by Default
});
вместо точек свои классы
gulp.task('postcss', function () {
var processors = [
colorShort,
focus,
precss,
short,
size,
responsiveImages,
clearFix,
px2Rem,
cssNext,
cssMqpacker,
byeBye,
discardComments,
cssNano
];
return gulp.src('src/css/*.css')
.pipe(postcss(processors))
.pipe(gulp.dest('dist/css/'))
.pipe(browserSync.stream());
});
@font-face {
font-family: "Alexander";
src: url("../fonts/Alexander/Alexander.eot");
src: url("../fonts/Alexander/Alexander.eot?#iefix")format("embedded-opentype"),
url("../fonts/Alexander/Alexander.woff") format("woff"),
url("../fonts/Alexander/Alexander.ttf") format("truetype");
font-style: normal;
font-weight: normal;
}