73 lines
1.1 KiB
CSS
73 lines
1.1 KiB
CSS
/* assets/css/custom.css */
|
|
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
|
|
|
|
body {
|
|
font-family: 'Poppins', sans-serif;
|
|
background-color: #F8F9FA;
|
|
}
|
|
|
|
.admin-wrapper {
|
|
display: flex;
|
|
}
|
|
|
|
#sidebar {
|
|
min-width: 250px;
|
|
max-width: 250px;
|
|
background: #2E7D32;
|
|
color: #fff;
|
|
transition: all 0.3s;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
#sidebar .sidebar-header {
|
|
padding: 20px;
|
|
background: #256828;
|
|
}
|
|
|
|
#sidebar ul.components {
|
|
padding: 20px 0;
|
|
}
|
|
|
|
#sidebar ul p {
|
|
color: #fff;
|
|
padding: 10px;
|
|
}
|
|
|
|
#sidebar ul li a {
|
|
padding: 10px;
|
|
font-size: 1.1em;
|
|
display: block;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
#sidebar ul li a:hover {
|
|
background: #256828;
|
|
}
|
|
|
|
#sidebar ul li.active > a,
|
|
a[aria-expanded="true"] {
|
|
background: #256828;
|
|
}
|
|
|
|
#content {
|
|
width: 100%;
|
|
padding: 20px;
|
|
}
|
|
|
|
.card {
|
|
border-radius: 0.5rem;
|
|
border: none;
|
|
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #2E7D32;
|
|
border-color: #2E7D32;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #256828;
|
|
border-color: #256828;
|
|
}
|