89 lines
1.3 KiB
CSS
89 lines
1.3 KiB
CSS
|
|
.navbar .nav-link,
|
|
.navbar .nav-link span {
|
|
color: white !important;
|
|
}
|
|
|
|
.navbar .fa-user-circle {
|
|
color: white !important;
|
|
}
|
|
|
|
.navbar {
|
|
position: relative;
|
|
height: 70px;
|
|
}
|
|
|
|
#sidebarToggleTop {
|
|
color: white !important;
|
|
}
|
|
|
|
#sidebarToggleTop:hover {
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
.navbar .nav-item.dropdown .nav-link:hover {
|
|
color: white !important;
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
/* Profile Page Styles */
|
|
.profile-container {
|
|
max-width: 800px;
|
|
margin: 30px auto;
|
|
padding: 20px;
|
|
background: #fff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 0 10px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.profile-header {
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.profile-header h2 {
|
|
color: #343a40;
|
|
}
|
|
|
|
.profile-avatar {
|
|
width: 150px;
|
|
height: 150px;
|
|
border-radius: 50%;
|
|
object-fit: cover;
|
|
margin-bottom: 15px;
|
|
border: 5px solid #f8f9fa;
|
|
}
|
|
|
|
.profile-details {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.profile-details .form-group {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.profile-details label {
|
|
font-weight: 600;
|
|
color: #495057;
|
|
}
|
|
|
|
.profile-details .form-control {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.profile-actions {
|
|
text-align: right;
|
|
}
|
|
|
|
.btn-save {
|
|
background-color: #4e73df;
|
|
border-color: #4e73df;
|
|
}
|
|
|
|
.btn-save:hover {
|
|
background-color: #2e59d9;
|
|
border-color: #2653d4;
|
|
}
|
|
|
|
|