Skip to content

Commit

Permalink
initialize version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
somrat-gyver committed Jul 11, 2020
1 parent 9336ec4 commit 140ce06
Show file tree
Hide file tree
Showing 78 changed files with 15,231 additions and 3,586 deletions.
5 changes: 0 additions & 5 deletions assets/script.js → assets/js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,6 @@ $(document).ready(function () {
itemsDesktopSmall: [979, 3]
});

// Gallery Popup
$('.image-popup').magnificPopup({
type: 'image'
});

// animation scroll js
var html_body = $('html, body');
$('.page-scroll').on('click', function () { //use page-scroll class in any HTML tag for scrolling
Expand Down
35 changes: 35 additions & 0 deletions assets/scss/_mixins.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
@mixin mobile-xs{
@media(max-width:400px){
@content;
}
}
@mixin mobile{
@media(max-width:575px){
@content;
}
}
@mixin tablet{
@media(max-width:767px){
@content;
}
}
@mixin desktop{
@media(max-width:991px){
@content;
}
}
@mixin desktop-lg{
@media(max-width:1199px){
@content;
}
}

@mixin desktop-xl{
@media(max-width:1499px){
@content;
}
}

@mixin size($size){
width: $size; height: $size;
}
Loading

0 comments on commit 140ce06

Please sign in to comment.