122 lines
2.1 KiB
CSS
122 lines
2.1 KiB
CSS
/* Main */
|
|
.main__container {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
/* Form */
|
|
.form {
|
|
height: 600px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 90px;
|
|
border: solid 5px;
|
|
border-radius: 70px;
|
|
border-color: #a721fa;
|
|
color: #fff;
|
|
background-color: #2c2a2a;
|
|
}
|
|
.form__title {
|
|
text-align: center;
|
|
font-size: 24px;
|
|
font-weight: 800;
|
|
padding-top: 30px;
|
|
}
|
|
.form__subtitle {
|
|
text-align: center;
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
}
|
|
.fields {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 60px 84px 60px 84px;
|
|
gap: 20px;
|
|
}
|
|
@media (max-width: 420px) {
|
|
.fields {
|
|
margin: 60px 70px 60px 70px;
|
|
}
|
|
}
|
|
.fields__nubmer {
|
|
height: 50px;
|
|
border-radius: 30px;
|
|
}
|
|
.fields__password {
|
|
height: 50px;
|
|
border-radius: 30px;
|
|
}
|
|
.fields__password_repeat {
|
|
height: 50px;
|
|
border-radius: 30px;
|
|
}
|
|
.fields__submit {
|
|
height: 50px;
|
|
margin-top: 10px;
|
|
border-radius: 30px;
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
color: #fff;
|
|
background-color: #a721fa;
|
|
}
|
|
.form__warning {
|
|
text-align: center;
|
|
font-size: 10px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
/* Cart */
|
|
.cart {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 90px;
|
|
padding: 30px 30px;
|
|
gap: 10px;
|
|
border: solid 5px;
|
|
border-radius: 70px;
|
|
border-color: #a721fa;
|
|
color: #fff;
|
|
background-color: #2c2a2a;
|
|
}
|
|
.cart__row_header {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
}
|
|
.cart__column {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 200px;
|
|
height: 50px;
|
|
}
|
|
.cart__row {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
border-radius: 30px;
|
|
background-color: #363434;
|
|
}
|
|
.cart__button_decrement {
|
|
color: #fff;
|
|
}
|
|
.cart__amount {
|
|
-moz-appearance: textfield;
|
|
text-align: center;
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
border: none;
|
|
color: #fff;
|
|
background-color: #363434;
|
|
}
|
|
.cart__button_increment {
|
|
color: #fff;
|
|
}
|
|
.cart__button_close {
|
|
font-size: 30px;
|
|
font-weight: 800;
|
|
color: #fff;
|
|
} |