Main Page.css: Difference between revisions
No edit summary Tag: Manual revert |
No edit summary |
||
| Line 53: | Line 53: | ||
overflow: hidden; | overflow: hidden; | ||
min-width: 0; | min-width: 0; | ||
} | |||
@media screen and (min-width: 720px) { | |||
.content-grid { | |||
grid-template-columns: 1fr 1fr; | |||
} | |||
} | |||
.content-grid > .content-section { | |||
grid-column: 1 / -1; | |||
} | |||
@media screen and (min-width: 720px) { | |||
.content-grid > .content-section:nth-child(1), | |||
.content-grid > .content-section:nth-child(2) { | |||
grid-column: auto; | |||
} | |||
} | } | ||
| Line 76: | Line 93: | ||
.content-section.wide { | .content-section.wide { | ||
grid-column: | grid-column: 1 / -1; | ||
} | } | ||