27 lines
422 B
CSS
27 lines
422 B
CSS
|
body {
|
||
|
background-image: url("/random");
|
||
|
height: 100vh;
|
||
|
width: 100vw;
|
||
|
}
|
||
|
body nav {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: center;
|
||
|
background: rgba(0, 0, 0, 0.4);
|
||
|
width: 100vw;
|
||
|
padding: 0 20px;
|
||
|
}
|
||
|
body nav ul > li {
|
||
|
color: white;
|
||
|
}
|
||
|
body nav ul > li :hover {
|
||
|
color: #13678A;
|
||
|
animation: ease-in;
|
||
|
}
|
||
|
body h1 {
|
||
|
margin: auto;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
/*# sourceMappingURL=styles.css.map */
|