2023-05-11 19:29:47 +00:00
|
|
|
.results-container-padding {
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
background-color: #E3F0FF;
|
|
|
|
|
|
|
|
}
|
2023-05-11 16:59:48 +00:00
|
|
|
.results-container {
|
|
|
|
display: grid;
|
|
|
|
gap: 20px;
|
2023-05-11 19:29:47 +00:00
|
|
|
width: 90%;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
2023-05-11 16:59:48 +00:00
|
|
|
|
2023-05-11 19:29:47 +00:00
|
|
|
grid-template-rows: repeat(6, calc((90vw / 2) - 20px));
|
|
|
|
}
|
|
|
|
.result-square {
|
|
|
|
background-color: red;
|
|
|
|
}
|
|
|
|
.result-portrait {
|
|
|
|
background-color: blue;
|
|
|
|
grid-row: span 2;
|
|
|
|
}
|
|
|
|
.result-landscape {
|
|
|
|
background-color: green;
|
|
|
|
grid-column: span 2;
|
|
|
|
}
|
|
|
|
.result-instagram {
|
|
|
|
background-color: yellow;
|
|
|
|
grid-column: span 2;
|
|
|
|
grid-row: span 2;
|
2023-05-11 16:59:48 +00:00
|
|
|
}
|