Skip to content

Instantly share code, notes, and snippets.

@DmitriyRF
Last active March 23, 2018 09:48
Show Gist options
  • Save DmitriyRF/7731c2cbe85d1034b67025b224f41b58 to your computer and use it in GitHub Desktop.
Save DmitriyRF/7731c2cbe85d1034b67025b224f41b58 to your computer and use it in GitHub Desktop.
File for media sass
/**************************************************************************************
__ _ _ _ _ _ ____ _ _ ______ _ _ _ __
/ / ______ /\| |/\ _| || |_ | \ | | / __ \ | \ | || ____| _| || |_ /\| |/\ ______ \ \
/ /______|______|\ ` ' /|_ __ _| | \| || | | || \| || |__ |_ __ _|\ ` ' /|______|______\ \
< <|______|______|_ _|_| || |_ | . ` || | | || . ` || __| _| || |_|_ _|______|______|> >
\ \ |______|/ , . \|_ __ _| | |\ || |__| || |\ || |____ |_ __ _|/ , . \|______| / /
\_\ \/|_|\/ |_||_| |_| \_| \____/ |_| \_||______| |_||_| \/|_|\/ /_/
______ ______ ______ ______
|______||______| |______||______|
**************************************************************************************/
/**************************************************************************************
___
/ _ \
__ __ ___ | | | | _ __ __ __
\ \/ / / __| | | | | | '_ \ \ \/ /
> < \__ \ | |_| | | |_) | > <
/_/\_\ |___/ \___/ | .__/ /_/\_\
| |
|_|
**************************************************************************************/
/**************************************************************************************
_____ ______ __
| ____| |____ | / /
___ _ __ ___ | |__ / / / /_ _ __ __ __
/ __| | '_ ` _ \ |___ \ / / | '_ \ | '_ \ \ \/ /
\__ \ | | | | | | ___) | / / | (_) | | |_) | > <
|___/ |_| |_| |_| |____/ /_/ \___/ | .__/ /_/\_\
| |
|_|
**************************************************************************************/
@media ( min-width: $breakpoint-sm )
{
}
/**************************************************************************************
_ ______ __ ___
| | |____ | / / / _ \
_ __ ___ __| | / / / /_ | (_) | _ __ __ __
| '_ ` _ \ / _` | / / | '_ \ > _ < | '_ \ \ \/ /
| | | | | | | (_| | / / | (_) | | (_) | | |_) | > <
|_| |_| |_| \__,_| /_/ \___/ \___/ | .__/ /_/\_\
| |
|_|
**************************************************************************************/
@media ( min-width: $breakpoint-md )
{
}
/**************************************************************************************
_ ___ ___ ___
| | / _ \ / _ \ |__ \
| | __ _ | (_) | | (_) | ) | _ __ __ __
| | / _` | \__, | \__, | / / | '_ \ \ \/ /
| | | (_| | / / / / / /_ | |_) | > <
|_| \__, | /_/ /_/ |____| | .__/ /_/\_\
__/ | | |
|___/ |_|
**************************************************************************************/
@media ( min-width: $breakpoint-lg )
{
}
/**************************************************************************************
_ __ __ ___ ___
| | /_ | /_ | / _ \ / _ \
__ __ | | | | | | | (_) | | (_) | _ __ __ __
\ \/ / | | | | | | \__, | \__, | | '_ \ \ \/ /
> < | | | | | | / / / / | |_) | > <
/_/\_\ |_| |_| |_| /_/ /_/ | .__/ /_/\_\
| |
|_|
**************************************************************************************/
@media ( min-width: $breakpoint-xl )
{
}
/*========== Desktop First Method ==========*/
/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
}
/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
}
/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
}
/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
}
/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {
}
/*========== Mobile First Method ==========*/
/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
}
/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
}
/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
}
/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
}
/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment