Spaces:
Running
Running
File size: 1,480 Bytes
67837cf b9dde81 67837cf b9dde81 67837cf b9dde81 67837cf b9dde81 67837cf b9dde81 67837cf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
.content-section {
display: none;
}
.content-section.active {
display: block;
animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.audio-wave {
height: 40px;
background: linear-gradient(90deg, #3B82F6 0%, rgba(59, 130, 246, 0.2) 100%);
border-radius: 4px;
position: relative;
overflow: hidden;
}
.audio-wave::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: repeating-linear-gradient(
90deg,
transparent,
transparent 2px,
rgba(255, 255, 255, 0.3) 2px,
rgba(255, 255, 255, 0.3) 4px
);
animation: wave 1s linear infinite;
}
@keyframes wave {
from { transform: translateX(-4px); }
to { transform: translateX(0); }
}
.role-badge {
font-size: 0.75rem;
line-height: 1rem;
padding: 0.25rem 0.5rem;
border-radius: 9999px;
font-weight: 600;
}
.role-badge.admin {
background-color: #EDE9FE;
color: #7C3AED;
}
.role-badge.manager {
background-color: #DBEAFE;
color: #1D4ED8;
}
.role-badge.viewer {
background-color: #D1FAE5;
color: #065F46;
}
.prose {
color: #374151;
line-height: 1.6;
}
.prose p {
margin-bottom: 1rem;
}
.prose strong {
font-weight: 600;
}
.prose ul {
list-style-type: disc;
margin-left: 1.5rem;
margin-bottom: 1rem;
} |