37259-vm/assets/css/style.css
2026-01-04 09:27:56 +00:00

94 lines
1.5 KiB
CSS

:root {
--main-bg-color: #F8F9FA;
--primary-color: #0F2A44;
--secondary-color: #1F7A5A;
}
body {
font-family: 'Poppins', sans-serif;
background-color: var(--main-bg-color);
}
#wrapper {
overflow-x: hidden;
}
#sidebar-wrapper {
min-height: 100vh;
margin-left: -15rem;
transition: margin 0.25s ease-out;
}
#sidebar-wrapper .sidebar-heading {
color: white;
}
#sidebar-wrapper .list-group {
width: 15rem;
}
#page-content-wrapper {
min-width: 100vw;
}
#wrapper.toggled #sidebar-wrapper {
margin-left: 0;
}
#sidebar-wrapper .list-group-item {
border: none;
color: #ced4da;
}
#sidebar-wrapper .list-group-item:hover {
background: rgba(255, 255, 255, 0.1);
color: white;
}
#sidebar-wrapper .list-group-item.active {
background-color: var(--secondary-color) !important;
color: white;
font-weight: bold;
border-left: 5px solid white;
}
.primary-text {
color: white;
}
.second-text {
color: var(--primary-color);
}
.card {
border-radius: 0.5rem;
border: none;
}
.form-control, .form-select {
border-radius: 0.5rem;
}
.btn-primary {
background-color: var(--primary-color);
border-color: var(--primary-color);
border-radius: 0.5rem;
}
.btn-primary:hover {
background-color: #0b1f33;
border-color: #0b1f33;
}
.login-container {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.login-card {
width: 100%;
max-width: 450px;
}