trust-module-frontend/frontend/src/Style/SidebarMenu.css

70 lines
1.3 KiB
CSS

/* Боковое меню */
.sidebar {
width: 250px;
background-color: #333;
padding: 20px;
box-sizing: border-box;
border-right: 1px solid #444;
height: 100vh;
/* Занимает всю высоту экрана */
overflow-y: auto;
/* Прокрутка внутри меню, если контент не помещается */
position: sticky;
/* Фиксируем меню */
top: 0;
/* Прилипаем к верху */
}
.sidebar-title {
margin-bottom: 20px;
font-size: 18px;
font-weight: bold;
color: white;
}
.menu-item {
margin-bottom: 10px;
color: white;
}
h2 {
color: white
}
.menu-item-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
background-color: #444;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.menu-item-header:hover {
background-color: #222;
}
.submenu {
margin-left: 20px;
margin-top: 10px;
}
.tabs-container {
margin-top: 20px;
}
.tab {
padding: 10px;
background-color: #444;
border: 1px solid #333;
border-radius: 5px;
margin-bottom: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.tab:hover {
background-color: #222;
}