RobotNet/RobotNet.IdentityServer/Components/Account/Pages/Role.razor.css
2025-10-15 15:15:53 +07:00

87 lines
1.7 KiB
CSS

.mdi {
display: inline-block;
position: relative;
background-size: cover;
align-items:center;
}
.pa-4{
overflow:hidden;
}
.role-header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border-radius: 12px;
padding: 24px;
margin-bottom: 24px;
box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.modern-card {
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
border: 1px solid rgba(0,0,0,0.06);
transition: all 0.3s ease;
}
.modern-card:hover {
box-shadow: 0 8px 40px rgba(0,0,0,0.12);
transform: translateY(-2px);
}
.section-title {
font-weight: 600;
color: #2d3748;
margin-bottom: 16px;
display: flex;
align-items: center;
gap: 8px;
}
.stats-card {
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
color: white;
border-radius: 12px;
padding: 20px;
text-align: center;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.user-avatar {
width: 40px;
height: 40px;
border-radius: 50%;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: bold;
margin-right: 12px;
}
.role-chip {
margin: 2px;
font-size: 12px;
}
.action-button {
border-radius: 8px;
transition: all 0.2s ease;
}
.action-button:hover {
transform: scale(1.05);
}
.table-container {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.search-container {
background: #f8fafc;
border-radius: 12px;
padding: 16px;
margin-bottom: 16px;
}