20 lines
194 B
CSS
20 lines
194 B
CSS
|
.wrapper {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.center {
|
||
|
width: 70%;
|
||
|
}
|
||
|
|
||
|
@media screen and (min-width: 992px) {
|
||
|
.center {
|
||
|
width: 40%;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media screen and (max-width: 576px) {
|
||
|
.center {
|
||
|
width: 100%;
|
||
|
}
|
||
|
}
|