60 lines
490 B
CSS
60 lines
490 B
CSS
* {
|
|
font-family: cursive;
|
|
}
|
|
|
|
|
|
body{
|
|
|
|
}
|
|
|
|
|
|
|
|
nav{
|
|
top: 0;
|
|
position: fixed;
|
|
display: flex;
|
|
align-content: center;
|
|
justify-content: center;
|
|
background-image: url("../img/icon.png");
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#icone{
|
|
height: 10vh;
|
|
width: 10vw;
|
|
}
|
|
|
|
|
|
|
|
|
|
li{
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
p{
|
|
font-size: 30px;
|
|
}
|
|
|
|
.page{
|
|
list-style-type: none;
|
|
text-decoration: none;
|
|
color: black;
|
|
margin-right: 10vh;
|
|
|
|
|
|
|
|
}
|
|
|
|
.page:hover{
|
|
color: red;
|
|
transform: scale(1.3);
|
|
}
|
|
|
|
footer{
|
|
background-color: black;
|
|
|
|
} |