27 lines
315 B
CSS
27 lines
315 B
CSS
body {
|
|
margin: 0;
|
|
height: 100vh;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
height: 100%;
|
|
}
|
|
|
|
.tile {
|
|
flex: 1;
|
|
/* equal width columns */
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.text-content {
|
|
text-align: center;
|
|
}
|
|
|
|
.burger img {
|
|
max-width: 90%;
|
|
max-height: 90%;
|
|
height: auto;
|
|
} |