52 lines
868 B
CSS
52 lines
868 B
CSS
body {
|
|
background-color: #F3F4F6;
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
.sidebar {
|
|
background-color: #FFFFFF;
|
|
height: 100vh;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 250px;
|
|
padding-top: 1rem;
|
|
}
|
|
|
|
.sidebar .nav-link {
|
|
color: #4B5563;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.sidebar .nav-link.active,
|
|
.sidebar .nav-link:hover {
|
|
color: #4F46E5;
|
|
background-color: #E0E7FF;
|
|
}
|
|
|
|
.main-content {
|
|
margin-left: 250px;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
border-radius: 0.5rem;
|
|
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
|
}
|
|
|
|
#welcomeCarousel .carousel-item {
|
|
height: 500px;
|
|
}
|
|
|
|
#welcomeCarousel .carousel-item img {
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
#welcomeCarousel .carousel-caption {
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
border-radius: 0.5rem;
|
|
padding: 1rem;
|
|
}
|