16 lines
203 B
CSS
16 lines
203 B
CSS
|
body {
|
||
|
display: flex;
|
||
|
min-height: 100vh;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
main {
|
||
|
flex: 1 0 auto;
|
||
|
}
|
||
|
|
||
|
.all_lives
|
||
|
{
|
||
|
background-color: red;
|
||
|
color:blue;
|
||
|
height: 20;
|
||
|
}
|