mirror of
https://github.com/ivabus/www
synced 2024-11-26 22:35:05 +03:00
21 lines
339 B
CSS
21 lines
339 B
CSS
/* Breakpoints for re-use*/
|
|
|
|
@media only screen and (min-width: 1200px) {
|
|
|
|
}
|
|
|
|
@media only screen and (min-width: 992px) and (max-width: 1200px) {
|
|
|
|
}
|
|
|
|
@media only screen and (min-width: 768px) and (max-width: 992px) {
|
|
|
|
}
|
|
|
|
@media only screen and (min-width: 576px) and (max-width: 768px) {
|
|
|
|
}
|
|
|
|
@media only screen and (max-width: 576px) {
|
|
|
|
}
|