23 lines
363 B
CSS
23 lines
363 B
CSS
/* Основной контейнер */
|
|
.container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 16px;
|
|
}
|
|
|
|
.container > * {
|
|
flex: 1 1 calc(50% - 16px);
|
|
min-width: 0;
|
|
}
|
|
|
|
.container > :first-child:nth-last-child(1),
|
|
.container > :first-child:nth-last-child(1) ~ * {
|
|
flex: 1 1 100%;
|
|
}
|
|
|
|
@media (max-width: 1500px) {
|
|
.container > * {
|
|
flex: 1 1 100%;
|
|
}
|
|
}
|