This commit is contained in:
zino
2021-02-17 19:15:37 +01:00
parent 0c88fa4a05
commit c152ec4fdb
193 changed files with 78444 additions and 0 deletions

View File

@@ -0,0 +1,72 @@
.isotope {
margin-top: 10px;
}
.folio-inner {
overflow: hidden;
background: #fff;
}
.folio-filter {
position: relative;
bottom: 0px;
display: table;
margin: 20px auto 65px;
float: none;
padding: 0px;
}
.folio-filter li {
display: inline-block;
margin-right: 24px;
margin-left: 24px;
}
.folio-filter li:last-child {
padding-right: 0px;
}
.folio-filter li a {
display: block;
font-family: Raleway;
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
color: #666;
padding: 0 0px;
letter-spacing: 0.15em;
}
.folio-filter li a span {
margin-right: 6px;
}
.folio-filter li a:hover, .folio-filter li a.selected {
color: #000;
text-decoration: none;
}
/* Isotope Transitions
------------------------------- */
/* Note: Design for a width of 480px */
@media only screen and (max-width: 470px) {
.folio-filter {
margin: 50px auto 0px;
}
.folio-filter li {
font-size: 12px;
padding: 3px 3px;
}
}
/* Note: Design for a width of 480px */
@media only screen and (max-width: 767px) {
.folio-filter {
margin: 50px auto 0px;
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,77 @@
// Product Filter
$(window).load(function() {
"use strict";
var $container = $('.gallery-isotope');
$container.isotope({
layoutMode: "masonry",
itemSelector : '.isotope-item',
transitionDuration: '0.8s'
});
var $optionSets = $('.gallery-filter'),
$optionLinks = $optionSets.find('a');
$optionLinks.click(function(){
var $this = $(this);
// don't proceed if already selected
if ( $this.hasClass('active') ) {
return false;
}
var $optionSet = $this.parents('.gallery-filter');
$optionSet.find('.active').removeClass('active');
$this.addClass('active');
// make option object dynamically, i.e. { filter: '.my-filter-class' }
var options = {},
key = $optionSet.attr('data-option-key'),
value = $this.attr('data-option-value');
// parse 'false' as false boolean
value = value === 'false' ? false : value;
options[ key ] = value;
if ( key === 'layoutMode' && typeof changeLayoutMode === 'function' ) {
changeLayoutMode( $this, options );
} else {
// otherwise, apply new options
$container.isotope( options );
}
return false;
});
});
// Product Filter
$(window).load(function() {
"use strict";
var $container = $('.gallery-isotopes');
$container.isotope({
layoutMode: "masonry",
itemSelector : '.isotope-items',
transitionDuration: '0.8s'
});
var $optionSets = $('.gallery-filters'),
$optionLinks = $optionSets.find('a');
$optionLinks.click(function(){
var $this = $(this);
// don't proceed if already selected
if ( $this.hasClass('active') ) {
return false;
}
var $optionSet = $this.parents('.gallery-filters');
$optionSet.find('.active').removeClass('active');
$this.addClass('active');
// make option object dynamically, i.e. { filter: '.my-filter-class' }
var options = {},
key = $optionSet.attr('data-option-key'),
value = $this.attr('data-option-value');
// parse 'false' as false boolean
value = value === 'false' ? false : value;
options[ key ] = value;
if ( key === 'layoutMode' && typeof changeLayoutMode === 'function' ) {
changeLayoutMode( $this, options );
} else {
// otherwise, apply new options
$container.isotope( options );
}
return false;
});
});