48 lines
727 B
CSS
48 lines
727 B
CSS
body {
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
.login-body {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.login-container {
|
|
max-width: 400px;
|
|
width: 100%;
|
|
padding: 15px;
|
|
}
|
|
|
|
.sidebar {
|
|
width: 280px;
|
|
height: 100vh;
|
|
position: sticky;
|
|
top: 0;
|
|
}
|
|
|
|
.main-content {
|
|
background-color: #e9ecef;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
|
|
background-color: #198754;
|
|
}
|
|
|
|
.nav-link:hover {
|
|
background-color: #e9ecef;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #198754;
|
|
border-color: #198754;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #157347;
|
|
border-color: #146c43;
|
|
}
|