nav a {
display:block;
text-decoration: none;
color: rgba(255, 255, 255, 0.6);
}
nav a:hover {
color:#fff;
}
nav a span {
width: 5px;
height: 2px;
background-color: rgba(255, 255, 255, 0.6);
position: absolute;
right:0;
bottom: 30px;
transform: rotate(45deg);
}
width: 5px; не сработает
height: 2px; не сработает
background-color: rgba(255, 255, 255, 0.6); сработает
position: absolute; сработает
right:0; сработает
bottom: 30px; сработает
transform: rotate(45deg); не сработает