Spaces:
Sleeping
Sleeping
File size: 873 Bytes
f2bfbb5 | 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 | .container {
margin-top: 1.5rem;
padding-top: 1.5rem;
border-top: 1px solid var(--border-glass);
}
.title {
font-size: 0.9rem;
color: var(--text-secondary);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 1rem;
}
.list {
list-style: none;
padding: 0;
margin: 0;
}
.item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 8px 0;
border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
opacity: 0;
animation: slideInRight 0.4s ease-out forwards;
}
.item:last-child {
border-bottom: none;
}
.name {
color: var(--text-primary);
font-weight: 500;
text-transform: capitalize;
}
.prob {
color: var(--text-secondary);
font-size: 0.9rem;
}
@keyframes slideInRight {
from {
opacity: 0;
transform: translateX(20px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
|