42 lines
665 B
CSS
42 lines
665 B
CSS
.selection {
|
|
display: flex;
|
|
gap: 1rem;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin: 10px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.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;
|
|
color: #333;
|
|
text-align: center;
|
|
}
|