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

82 lines
1.2 KiB
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 {
2026-02-27 19:15:56 -06:00
display: flex;
align-items: center;
justify-content: center;
position: relative;
2025-09-02 19:50:17 -04:00
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
}
2026-02-27 19:15:56 -06:00
.imageSelection {
width: 30px;
height: 30px;
position: relative;
object-fit: contain;
}
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;
}
2026-02-27 19:15:56 -06:00
@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;
}
}