31 lines
571 B
CSS
31 lines
571 B
CSS
|
/*
|
||
|
0 - 600PX: Phone
|
||
|
600 - 900px: Table portrait
|
||
|
900 - 1200px: Tablet landscape
|
||
|
[1200 - 1800] is where our nortal styles apply
|
||
|
1800px + : Big desktop
|
||
|
*/
|
||
|
/* Media Query M3 */
|
||
|
/* Grid breakpoints */
|
||
|
.listContainer {
|
||
|
display: flex;
|
||
|
justify-content: space-evenly;
|
||
|
border-bottom: 1px solid #b9b9b9;
|
||
|
margin: auto;
|
||
|
width: 95%;
|
||
|
}
|
||
|
@media screen and (max-width: 1024px) {
|
||
|
.listContainer {
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.contentItem {
|
||
|
display: flex;
|
||
|
padding: 62px 52px;
|
||
|
}
|
||
|
@media screen and (max-width: 1024px) {
|
||
|
.contentItem {
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
}
|