This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/packages/webapp/src/components/Mailing/Mailing.scss

110 lines
1.7 KiB
SCSS
Raw Normal View History

2020-02-24 14:58:14 +00:00
@import "../../variables.scss";
2020-02-12 17:23:10 +00:00
.home-stay-form {
max-width: 342px;
margin: 36px 0 24px;
.relative {
position: relative;
}
.message {
font-size: 12px;
margin-top: 10px;
color: $lightGray;
&.red-text {
color: $red;
}
}
2020-02-24 14:58:14 +00:00
input[type="email"] {
2020-02-12 17:23:10 +00:00
border-radius: 4px;
box-shadow: 0 2px 4px 0 rgba(90, 94, 91, 0.1);
border: solid 1px #cbd3cd;
padding: 12px 0 12px 16px;
transition: 0.2s border-color;
&:hover {
border-color: rgb(143, 143, 143);
}
&:focus {
border-color: $green;
}
}
2020-02-24 14:58:14 +00:00
input[type="checkbox"] {
2020-02-12 17:23:10 +00:00
width: 20px;
height: 20px;
border-radius: 3px;
border: 1px solid #cbd3cd;
margin-right: 8px;
display: inline-block;
vertical-align: middle;
margin: -2px 8px 0 0;
2020-02-24 14:58:14 +00:00
background-image: url("../../images/green-check.svg");
2020-02-12 17:23:10 +00:00
background-repeat: no-repeat;
background-size: 28px;
background-position: top -300px center;
&:checked {
background-position: top -3px center;
}
}
button {
font-weight: 400;
@media (min-width: $largebp) {
font-size: 16px;
}
}
.email-error {
font-size: 12px;
margin-top: 8px;
color: $red;
}
}
.home-stay-form.light {
2020-02-24 14:58:14 +00:00
input[type="email"] {
2020-02-12 17:23:10 +00:00
box-shadow: 0 2px 4px 0 rgba(90, 94, 91, 0.1);
border-color: $white50;
color: $white;
&:hover {
border-color: $white;
}
&:focus {
border-color: $green;
}
}
2020-02-24 14:58:14 +00:00
input[type="checkbox"] {
2020-02-12 17:23:10 +00:00
border-color: $white50;
}
label {
color: $white50;
}
.message {
color: $white30;
&.red-text {
color: $red;
}
}
}
.home-form-stay-existing {
margin: 15px 0 20px 0;
label {
color: $darkGray;
}
}