old.nicco.io/styles/Breakpoints.styl

20 lines
254 B
Stylus
Raw Normal View History

2019-03-03 16:13:57 +01:00
is-phone()
@media (max-width: 599px)
{block}
is-tablet()
@media (min-width: 600px) {
block
}
is-netbook()
@media (min-width: 900px)
{block}
is-laptop()
@media (min-width: 1200px)
{block}
is-desktop()
@media (min-width: 1800px)
{block}