You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
861 B
CSS
49 lines
861 B
CSS
6 years ago
|
*{
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
font-family: "Calibri Light";
|
||
|
}
|
||
|
|
||
|
#content{
|
||
|
margin-top: 8vh;
|
||
|
background-color: aqua;
|
||
|
margin-left: 50vw;
|
||
|
border-radius: 10px;
|
||
|
padding: 4em;
|
||
|
width: 84%;
|
||
|
transform: translate(-50%);
|
||
|
}
|
||
|
|
||
|
.menu {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
flex-wrap: wrap;
|
||
|
justify-content: center;
|
||
|
background-color: rgb(65, 154, 28);
|
||
|
}
|
||
|
|
||
|
.menuItem {
|
||
|
color: white;
|
||
|
width: 10%;
|
||
|
min-width: 5em;
|
||
|
font-weight: bold;
|
||
|
text-decoration: none;
|
||
|
padding: 0.8em;
|
||
|
border-bottom: 4px solid rgb(65, 154, 28);
|
||
|
font-size: 1.1em;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.menuItem:hover{
|
||
|
cursor: pointer;
|
||
|
border-bottom: 4px solid orange;
|
||
|
}
|
||
|
|
||
|
#imgProfil{
|
||
|
margin-top: 30px;
|
||
|
margin-left: 50%;
|
||
|
transform: translate(-50%);
|
||
|
max-width: 300px;
|
||
|
max-height: 300px;
|
||
|
border-radius: 10px;
|
||
|
}
|