GameExpo22/css/team.css
2022-06-08 11:48:25 +01:00

43 lines
569 B
CSS

#team div img {
/*width: 100%;*/
max-width: 20em;
max-height: 20em;
display: block;
object-fit: contain;
border-radius: var(--rad);
}
#team div {
margin: 0 0 0.5em 0;
display: flex;
flex-direction: column;
text-align: justify;
align-items: center;
}
#team div div {
display: block;
}
#teams div p {
margin: 0 !important;
}
#team div span {
margin: 0 0.5em;
}
/*
When page is too thin, the picture and text stacks
*/
@media (min-width:621px) {
#team div {
display: flex;
flex-direction: row;
}
#team div img {
min-width: 15em;
}
}