mirror of
https://github.com/Fluffy-Bean/GameExpo.git
synced 2025-05-29 06:43:12 +00:00
55 lines
680 B
CSS
55 lines
680 B
CSS
.times {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.times img {
|
|
margin: 0;
|
|
|
|
width: 69%;
|
|
min-height: 20em;
|
|
|
|
display: block;
|
|
|
|
object-fit: cover;
|
|
border-radius: var(--rad);
|
|
}
|
|
|
|
.times div {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 30%;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
}
|
|
.times div div {
|
|
padding: 0;
|
|
|
|
width: auto;
|
|
|
|
text-align: center;
|
|
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
/*
|
|
When page is too thin, the map and text stacks
|
|
*/
|
|
|
|
@media (max-width:900px) {
|
|
.times {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.times img {
|
|
width: auto;
|
|
}
|
|
.times div {
|
|
margin: 0;
|
|
padding: 2em;
|
|
width: auto;
|
|
}
|
|
}
|