73 lines
1.2 KiB
CSS
73 lines
1.2 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.sidebar {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
z-index: 100;
|
|
padding: 48px 0 0;
|
|
box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
|
|
background-color: #fff;
|
|
}
|
|
|
|
.sidebar-sticky {
|
|
position: relative;
|
|
top: 0;
|
|
height: calc(100vh - 48px);
|
|
padding-top: .5rem;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.nav-link {
|
|
color: #333;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.nav-link.active,
|
|
.nav-link:hover {
|
|
color: #007bff;
|
|
}
|
|
|
|
.nav-link .feather {
|
|
margin-right: 8px;
|
|
color: #999;
|
|
}
|
|
|
|
.nav-link.active .feather {
|
|
color: inherit;
|
|
}
|
|
|
|
.main-content {
|
|
margin-left: 240px;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
border-radius: 0.375rem;
|
|
box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
|
|
}
|
|
|
|
@media (max-width: 767.98px) {
|
|
.sidebar {
|
|
width: 100%;
|
|
height: auto;
|
|
position: relative;
|
|
box-shadow: none;
|
|
}
|
|
.main-content {
|
|
margin-left: 0;
|
|
}
|
|
.sidebar-sticky {
|
|
height: auto;
|
|
padding-top: 0;
|
|
}
|
|
}
|