PteroTheme/resources/scripts/assets/css/sidebar.css

173 lines
3.1 KiB
CSS

:root {
--color-primary: #212121;
--color-secondary: #3a3636;
--color-tertiary: #17171b;
--color-quaternary: #757575;
--color-quinary: #9e9e9e;
--button-color: #212121;
--button-color-hover: #424242;
--button-color-active: #c72510;
--button-color-disabled: #757575;
--button-color-text: #9e9e9e;
--text-main: #ffffff;
--text-secondary: #ffffff;
--text-tertiary: #ffffff;
--background-color: #212121;
--invert: 1000;
--sidebar-button-color: white;
--sidebar-button-color-hover: #0e0e1d;
--card-bg: #353535;
}
:root {
--sidebar-size: 220px;
}
.nav-bar {
display: none;
}
/* The side navigation menu */
.sidebar {
position: fixed;
margin: 0;
padding: 0;
width: var(--sidebar-size);
background-color: var(--color-tertiary);
height: 100%;
overflow: auto;
z-index: 999999;
}
.content-container {
margin-left: calc(var(--sidebar-size) + 40px);
margin-right: 40px;
}
.content-dashboard {
max-width: 1200px;
}
.navbar-button {
display: none;
}
/* Sidebar links */
.sidebar a {
display: block;
color: var(--sidebar-button-color);
padding: 16px;
text-decoration: none;
}
/* Active/current link */
.sidebar .active > .icon {
background-color: var(--button-color-active);
color: white;
}
.sidebar > a {
display: flex;
text-align: center;
align-items: center;
}
.icon {
border-radius: 30%;
width: 50px;
height: 50px;
text-align: center;
background-size: 100px;
line-height: 30px;
background-color: var(--button-color);
color: var(--button-color-text);
margin-right: 10px;
}
.sidebar > a > div {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
/* Links on mouse-over */
.sidebar a:hover:not(.active) > .icon {
background-color: var(--sidebar-button-color-hover);
}
.icon {
transition: all 0.2s ease-in-out;
}
/* Page content. The value of the margin-left property should match the value of the sidebar's width property */
div.content {
margin-left: var(--sidebar-size);
padding: 1px 16px;
height: 1000px;
}
@media screen and (max-width: 1150px) {
.sidebar {
position: fixed;
width: 100%;
left: -1150px;
transition: all 0.3s ease-in-out;
}
.content-container {
margin-left: 40px;
margin-right: 40px;
}
div.content {
margin-left: 0;
padding: 1px 16px;
height: 1000px;
}
.active-nav {
left: 0;
margin-right: var(--sidebar-size);
width: var(--sidebar-size);
height: 100vh;
}
.nav-bar {
display: flex;
}
.navbar-button {
display: inline;
font-size: 1.5rem;
margin-left: 1rem;
cursor: pointer;
}
}
.avatar {
margin: 10px;
width: 200px;
height: 200px;
border-radius: 5%;
}
.smallAvatar {
width: 70px;
border-radius: 50%;
}
.nav-bar > * {
margin: 10px;
}
.left {
margin-left: auto;
}
.openMenu {
font-size: 50px;
}
.openMenu:hover {
cursor: pointer;
}