mirror of
https://github.com/LukeHagar/power-six.git
synced 2025-12-06 04:21:03 +00:00
24 lines
232 B
CSS
24 lines
232 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html, body, .square, img{
|
|
height: 100%;
|
|
}
|
|
|
|
.row {
|
|
height: 12.5%;
|
|
}
|
|
|
|
.square {
|
|
width: 12.5%;
|
|
float: left;
|
|
}
|
|
|
|
img{
|
|
width: 100%;
|
|
object-fit: contain;
|
|
}
|