76 lines
1.2 KiB
CSS
76 lines
1.2 KiB
CSS
.page {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 20px;
|
|
}
|
|
|
|
.title {
|
|
font-size: 22px;
|
|
font-weight: 700;
|
|
margin: 0;
|
|
}
|
|
|
|
.title-select {
|
|
margin: 0;
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.description {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.genders-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
gap: 20px;
|
|
width: 100%;
|
|
}
|
|
|
|
.gender {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 0;
|
|
width: 100%;
|
|
max-width: 150px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.gender__img {
|
|
width: 100%;
|
|
height: 174px;
|
|
}
|
|
|
|
.gender__button {
|
|
border: none;
|
|
width: 100%;
|
|
display: flex;
|
|
-webkit-box-pack: justify;
|
|
justify-content: space-between;
|
|
-webkit-box-align: center;
|
|
align-items: center;
|
|
text-transform: capitalize;
|
|
height: 52px;
|
|
background: #454895;
|
|
border-bottom-left-radius: 16px;
|
|
border-bottom-right-radius: 16px;
|
|
color: #fbfbff;
|
|
padding-left: 16px;
|
|
padding-right: 16px;
|
|
font-size: 18px;
|
|
line-height: 21px;
|
|
}
|
|
|
|
.button__arrow {
|
|
border-right: 2px solid rgb(251, 251, 255);
|
|
border-bottom: 2px solid rgb(251, 251, 255);
|
|
display: inline-block;
|
|
padding: 5px;
|
|
transform: rotate(-45deg);
|
|
}
|