deemix-webui/public/css/modules/sidebar.css

83 lines
1.3 KiB
CSS
Raw Normal View History

#sidebar {
2020-04-24 21:54:12 +02:00
display: flex;
flex-direction: column;
width: 48px;
height: 100%;
position: absolute;
2020-04-24 21:54:12 +02:00
top: 0;
left: 0;
background-color: var(--panels-background);
color: var(--panels-text);
2020-04-24 21:54:12 +02:00
transition: width 125ms ease-in-out 150ms;
2020-04-24 22:42:50 +02:00
z-index: 999;
}
2020-04-24 21:54:12 +02:00
#sidebar:hover {
width: 200px;
}
2020-04-24 21:54:12 +02:00
#sidebar .main_tablinks_text {
display: none;
display: inline-block;
margin-left: 20px;
opacity: 0;
visibility: hidden;
transition: all 50ms ease-in-out 200ms;
}
2020-04-24 21:54:12 +02:00
#sidebar:hover .main_tablinks_text {
display: inline-block;
opacity: 1;
visibility: visible;
}
2020-05-12 21:16:38 +02:00
#sidebar .main_tablinks:not(#theme_selector) {
2020-04-24 21:54:12 +02:00
display: flex;
align-items: center;
margin-top: 5px;
cursor: pointer;
2020-04-24 21:54:12 +02:00
}
2020-05-12 21:16:38 +02:00
#sidebar .main_tablinks:not(#theme_selector):hover {
2020-04-24 21:54:12 +02:00
background-color: #3e3e3e;
}
#sidebar .side_icon {
font-size: 30px;
padding: 9px;
}
#sidebar .main_tablinks.active .side_icon {
color: var(--accent-color);
}
2020-05-12 21:16:38 +02:00
/* Theme selector */
#theme_selector {
display: flex;
height: 50px;
}
#theme_togglers {
width: 100%;
display: flex;
}
#theme_togglers .theme_toggler {
width: 40px;
height: 40px;
border-radius: 1000px;
border: 1px solid var(--accent-color);
}
#theme_togglers .theme_toggler.light {
background: white;
}
#theme_togglers .theme_toggler.dark {
background: #141414;
}
#sidebar .theme_selector_icon {
transform: rotate(45deg);
}