31 lines
484 B
CSS
31 lines
484 B
CSS
nav {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
width: 230px;
|
|
background-color: #746CF5;
|
|
margin-right: 32px;
|
|
margin-top: 55px;
|
|
padding-top: 50px;
|
|
padding-left: 20px;
|
|
height: 80vh;
|
|
}
|
|
|
|
nav a {
|
|
display: block;
|
|
text-decoration: none;
|
|
color: white;
|
|
padding: 8px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
nav img {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
nav a:hover {
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|