Last active
October 12, 2019 00:51
-
-
Save uglyeoin/38de80d7a8f2cc8b76864f55cd7456e2 to your computer and use it in GitHub Desktop.
A responsive SCSS file made for Gantry 5 templates. Add @import "responsive"; to the bottom of your custom.scss file. Place in the templates/template_name/custom/scss folder
This file contains 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
/*========== Mobile First Responsive ==========*/ | |
/* LARGE DESKTOP */ | |
/* 1199.488px if default is 16px */ | |
@media only all and (max-width: 74.938rem) {} | |
/* DESKTOP */ | |
/* 959.08px */ | |
@media only all and (max-width: 59.938rem) {} | |
/* TABLET */ | |
/* 767.008px */ | |
@media only all and (max-width: 47.938rem) { | |
} | |
/* MOBILE */ | |
/* 479.008px */ | |
@media only all and (max-width: 29.938rem) { | |
.classExample { | |
font-size: 2rem; | |
} | |
} | |
/* Responsive Styles in separate file */ | |
@import "responsive"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment