31 lines
No EOL
663 B
CSS
31 lines
No EOL
663 B
CSS
main {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
div.rendertype-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
align-items: center;
|
|
}
|
|
|
|
div.rendertype-container > div.rendertype-img {
|
|
width: 250px;
|
|
height: 250px;
|
|
background-color: white;
|
|
background-position: center;
|
|
background-size: contain;
|
|
}
|
|
|
|
div.rendertype-container > div.rendertype-img.snake {
|
|
background-image: url(/media/snakerender.png);
|
|
}
|
|
|
|
div.rendertype-container > div.rendertype-img.hilbertcurve {
|
|
background-image: url(/media/hilbertcurve.gif);
|
|
} |