mirror of
https://github.com/ivabus/www
synced 2024-11-27 00:15:06 +03:00
22 lines
339 B
CSS
22 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) {
|
||
|
|
||
|
}
|