SAE_WEB_S1/CSS/styles.css

60 lines
490 B
CSS
Raw Normal View History

2023-12-28 12:03:46 +01:00
* {
2023-12-28 17:23:12 +01:00
font-family: cursive;
}
2023-12-29 12:04:07 +01:00
body{
}
nav{
top: 0;
position: fixed;
display: flex;
align-content: center;
justify-content: center;
background-image: url("../img/icon.png");
width: 100%;
}
2023-12-28 17:23:12 +01:00
#icone{
height: 10vh;
width: 10vw;
}
2023-12-29 12:04:07 +01:00
2023-12-28 17:23:12 +01:00
li{
display: inline-block;
2023-12-29 12:04:07 +01:00
}
p{
font-size: 30px;
2023-12-28 17:23:12 +01:00
}
.page{
2023-12-29 12:04:07 +01:00
list-style-type: none;
2023-12-28 17:23:12 +01:00
text-decoration: none;
color: black;
2023-12-29 12:04:07 +01:00
margin-right: 10vh;
2023-12-28 17:23:12 +01:00
}
.page:hover{
color: red;
transform: scale(1.3);
}
2023-12-29 12:04:07 +01:00
footer{
background-color: black;
}