cyp/app/app.css
Ondrej Zara 17b5040766 art
2019-03-19 22:56:39 +01:00

30 lines
417 B
CSS

body {
margin: 0;
display: flex;
flex-direction: column;
height: 100vh;
}
header nav ul {
margin: 0;
padding: 0;
list-style: none;
display: flex;
flex-direction: row;
}
header nav ul li {
text-align: center;
flex-grow: 1;
line-height: 40px;
}
header nav ul li:hover {
background-color: red;
}
main {
flex-grow: 1;
overflow-x: hidden;
overflow-y: auto;
}
footer {
flex-basis: 40px;
}