Ghost/ghost/admin/app/styles/spirit/_media-queries.css

29 lines
639 B
CSS
Raw Normal View History

/*
The media queries can be referenced like so:
@media (--breakpoint-not-small) {
.medium-and-larger-specific-style {
background-color: red;
}
}
@media (--breakpoint-medium) {
.medium-screen-specific-style {
background-color: red;
}
}
@media (--breakpoint-large) {
.large-and-larger-screen-specific-style {
background-color: red;
}
}
*/
/* Media Queries */
@custom-media --breakpoint-not-small screen and (min-width: 44rem);
@custom-media --breakpoint-medium screen and (min-width: 44rem) and (max-width: 66rem);
@custom-media --breakpoint-large screen and (min-width: 66rem);