60 lines
889 B
CSS
60 lines
889 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;400;600;800&display=swap');
|
|
|
|
/* General styles */
|
|
/* body {
|
|
font-family: 'Nunito Sans', sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
color: #fff;
|
|
} */
|
|
|
|
.sidebar {
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding-top: 20px;
|
|
}
|
|
|
|
/* .logo {
|
|
font-size: 24px;
|
|
color: #F97316;
|
|
margin-bottom: 40px;
|
|
} */
|
|
|
|
.menu {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.menu-item {
|
|
color: #4b5563;
|
|
margin: 10px 0;
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
|
|
/* Responsive Styles */
|
|
@media (max-width: 768px) {
|
|
.sidebar {
|
|
width: 100%;
|
|
height: auto;
|
|
flex-direction: row;
|
|
justify-content: space-around;
|
|
padding: 10px 0;
|
|
}
|
|
|
|
.menu {
|
|
flex-direction: row;
|
|
width: auto;
|
|
}
|
|
|
|
.menu-item {
|
|
margin: 0 10px;
|
|
}
|
|
}
|