73 lines
1.5 KiB
CSS
73 lines
1.5 KiB
CSS
.mdi {
|
|
display: inline-flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.user-manager-container {
|
|
min-height: 100vh;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
background-attachment: fixed;
|
|
}
|
|
|
|
.header-section {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
backdrop-filter: blur(10px);
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
.modern-tabs {
|
|
background: rgba(255, 255, 255, 0.95);
|
|
backdrop-filter: blur(20px);
|
|
border-radius: 20px;
|
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
|
|
padding: 24px;
|
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
.modern-tabs .mud-tabs-toolbar {
|
|
background: transparent;
|
|
border-radius: 12px;
|
|
padding: 8px;
|
|
margin-bottom: 24px;
|
|
background: rgba(21, 101, 192, 0.05);
|
|
}
|
|
|
|
.modern-tabs .mud-tab {
|
|
border-radius: 8px;
|
|
margin: 0 4px;
|
|
transition: all 0.3s ease;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.modern-tabs .mud-tab:hover {
|
|
background: rgba(21, 101, 192, 0.1);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.modern-tabs .mud-tab.mud-tab-active {
|
|
background: rgba(21, 101, 192, 0.15);
|
|
color: #1565C0;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.tab-content {
|
|
animation: fadeInUp 0.5s ease-out;
|
|
}
|
|
|
|
@keyframes fadeInUp {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(20px);
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
.tab-panel {
|
|
padding: 0 !important;
|
|
} |