Files
front-AT/app/Components/Selection/Selection.css
T
2026-02-27 19:15:56 -06:00

82 lines
1.2 KiB
CSS

.selection {
display: flex;
gap: 1rem;
justify-content: center;
align-items: center;
flex-wrap: wrap;
margin-bottom: 1rem;
}
.selectionItem {
display: flex;
flex-direction: column;
align-items: center;
cursor: pointer;
}
.buttonSelection {
display: flex;
align-items: center;
justify-content: center;
position: relative;
width: 50px;
height: 50px;
border-radius: 100%;
border: 2px solid #5b8cc9;
background-color: #f0f0f0;
transition: all 0.3s ease;
padding: 5px;
}
.imageSelection {
width: 30px;
height: 30px;
position: relative;
object-fit: contain;
}
.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;
font-size: 1.25rem;
color: #333;
text-align: center;
}
@media(max-height:550px) {
.buttonLabel {
margin-top: 2px;
font-size: 1rem;
}
}
@media(max-height:550px) {
.selection {
margin-bottom: 0rem;
gap: 2rem;
}
.buttonSelection {
width: 40px;
height: 40px;
padding: 0px;
}
.imageSelection {
width: 20px;
height: 20px;
position: relative;
object-fit: contain;
}
}