Files
front-AT/app/Components/Selection/Selection.css
T

44 lines
710 B
CSS
Raw Normal View History

2025-09-02 19:50:17 -04:00
.selection {
display: flex;
gap: 1rem;
justify-content: center;
align-items: center;
flex-wrap: wrap;
2026-02-19 17:52:17 -06:00
margin-bottom: 1rem;
2025-09-02 19:50:17 -04:00
}
.selectionItem {
display: flex;
flex-direction: column;
align-items: center;
cursor: pointer;
}
.buttonSelection {
width: 50px;
height: 50px;
border-radius: 100%;
border: 2px solid #5b8cc9;
background-color: #f0f0f0;
transition: all 0.3s ease;
2025-09-08 13:35:46 -04:00
padding: 5px;
2025-09-02 19:50:17 -04:00
}
.buttonSelection:hover {
transform: scale(1.1);
background-color: #d0e1ff;
}
.buttonSelection.active {
background-color: #5b8cc9;
box-shadow: 0 0 10px #5b8cc9;
}
.buttonLabel {
margin-top: 8px;
font-weight: bold;
2025-09-08 13:35:46 -04:00
font-size: 1.25rem;
2025-09-02 19:50:17 -04:00
color: #333;
text-align: center;
}