62 lines
1.2 KiB
CSS
62 lines
1.2 KiB
CSS
.price-updates-options {
|
|
position: relative;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.price-updates-options input,
|
|
.price-updates-options label,
|
|
.price-updates-options button {
|
|
font-size: 16px;
|
|
}
|
|
|
|
|
|
.price-updates-options__input-wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 8px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.price-updates-options__input-wrapper input[type="text"] {
|
|
width: 500px;
|
|
}
|
|
|
|
.price-updates-options__submit-wrapper {
|
|
display: flex;
|
|
gap: 12px;
|
|
}
|
|
|
|
.price-updates-options__submit {
|
|
width: 200px;
|
|
padding: 12px 16px;
|
|
text-align: center;
|
|
border-radius: 20px;
|
|
border: none;
|
|
color: #fff;
|
|
background: radial-gradient(278.91% 196.13% at 128.36% -48.29%, #ee6868 0%, #569ef0 57.69%);
|
|
cursor: pointer;
|
|
transition: filter 0.3s ease;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.price-updates-options__submit:hover {
|
|
filter: brightness(0.9);
|
|
}
|
|
|
|
.price-updates-options__success-message,
|
|
.price-updates-options__error-message {
|
|
width: max-content;
|
|
padding: 16px 20px;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.price-updates-options__success-message {
|
|
color: #fff;
|
|
background-color: #19a917;
|
|
}
|
|
|
|
.price-updates-options__error-message {
|
|
color: #fff;
|
|
background-color: #fa0505;
|
|
} |