This commit is contained in:
2024-06-05 16:57:33 +02:00
parent 84194c85fe
commit cadbb9b457
28 changed files with 1332 additions and 174 deletions

View File

@@ -1,8 +1,8 @@
.email-form-au{
.email-form-au {
padding: 30px 15px;
background-color: #15c1cb;
.email-title{
.email-title {
font-style: normal;
font-weight: 500;
font-size: 24px;
@@ -12,7 +12,8 @@
text-align: inherit;
color: #ffffff;
}
.email-text{
.email-text {
padding: 0 10px;
text-align: center;
font-style: normal;
@@ -23,7 +24,7 @@
letter-spacing: 0px;
color: #ffffff;
}
.subscribe {
@include button;
background-color: white;
@@ -39,18 +40,47 @@
transition: 0.2s;
}
.input-text{
.input-text {
padding: 18px 20px;
border: none;
background-color: #f6f6f6;
margin: 0 0 20px;
color: #777777 !important;
color: #777777 !important;
width: 93%;
font-family: MerriweatherSans;
}
.input-text::placeholder{
.input-text::placeholder {
color: #31353d !important;
}
}
@media only screen and (min-width:768px) {
.email-form-au {
.email-text {
padding: 0 40px;
}
.input-text {
width: 55%;
}
}
}
@media only screen and (min-width:992px) {
.email-form-au {
.email-title{
font-size: 29px;
}
.email-text {
padding: 0 40px;
}
.input-text {
width: 25%;
}
}
}