pokedex-web / frontend /src /components /TopPredictions.module.css
gpimentel's picture
feat: initialize Pokedex Web project with FastAPI backend and React frontend
f2bfbb5
Raw
History Blame Contribute Delete
873 Bytes
.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);
}
}