15 lines
312 B
CSS
15 lines
312 B
CSS
|
|
@media (min-width: 1270px) {
|
||
|
|
.navbar {
|
||
|
|
background-image: url('/img/bg-navbar-1280.png');
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-size: cover;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
@media (min-width: 1920px) {
|
||
|
|
.navbar {
|
||
|
|
background-image: url('/img/bg-navbar-1920.png');
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-size: cover;
|
||
|
|
}
|
||
|
|
}
|