2023-02-07 02:36:56 +00:00
|
|
|
/*
|
|
|
|
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 */
|
|
|
|
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");
|
|
|
|
.listContainer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-evenly;
|
2023-02-10 01:54:10 +00:00
|
|
|
border-bottom: 1px solid #b9b9b9;
|
|
|
|
}
|
|
|
|
@media screen and (max-width: 1024px) {
|
|
|
|
.listContainer {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.contentItem {
|
|
|
|
display: flex;
|
|
|
|
padding: 62px 52px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row-reverse;
|
|
|
|
}
|
|
|
|
@media screen and (max-width: 1024px) {
|
|
|
|
.contentItem {
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
}
|
2023-02-07 02:36:56 +00:00
|
|
|
}
|