You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

51 lines
829 B

*{
margin: 0;
padding: 0;
}
.encabezado{
background-color: #008A93;
}
img{
width: 30px;
border-radius: 50%;
}
.encabezado nav{
display: flex;
justify-content: space-around;
align-items: center;
padding: 15px;
}
.encabezado nav ul{
list-style: none;
display: flex;
justify-content: space-between;
}
a{
text-decoration: none;
font-size: 20px;
color: white;
padding: 12px 20px;
display: block;
}
a:hover{
background: rgb(44,44,44);
}
.encabezado nav ul li ul{
display: flex;
flex-direction: column;
}
.encabezado nav ul li ul{
position: absolute;
background: #008A93;
}
.encabezado nav ul li ul li{
width: 180px;
position: relative;
}
.encabezado nav ul li ul{
display: none;
}
.encabezado nav ul li:hover>ul{
display: block;
}