forked from M3-Academy/vtex-cms-template-atualizado
feat(home): Cria o formulario de newsletter
This commit is contained in:
parent
6deb39d4a3
commit
85a1910ec8
@ -65,9 +65,10 @@ const app = new Container({
|
||||
});
|
||||
|
||||
app.bind(Minicart.name, ".minicart__drawer");
|
||||
|
||||
app.bind(Newsletter.name, {
|
||||
elemento: ".news-form",
|
||||
textButtom: "Cadastre-se",
|
||||
elemento: ".footer-newsletter__form",
|
||||
textButtom: "CADASTRE-SE",
|
||||
});
|
||||
|
||||
export default app;
|
||||
|
@ -1,196 +1,116 @@
|
||||
/***************************************************************/
|
||||
/**-- Newslettter --------------------------********************/
|
||||
/*-------------------------------------------------------------*/
|
||||
.footer-newsletter {
|
||||
padding: 24px 15px;
|
||||
background: linear-gradient(180deg, $color-blue 0%, $color-blue2 100%);
|
||||
|
||||
.captacao-emails-newsletter {
|
||||
background-color: #f71963;
|
||||
background-image: url("/arquivos/template-background-newsletter.png");
|
||||
margin-top: 104px;
|
||||
padding: 12px 15px 24px;
|
||||
|
||||
@include mq(md, max) {
|
||||
background-image: url("/arquivos/template-mobile-background-newsletter.png");
|
||||
background-size: cover;
|
||||
padding: 52px 15px 42px;
|
||||
&__wrapper {
|
||||
max-width: 698px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.row {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
> .row > div {
|
||||
max-width: 960px;
|
||||
margin: auto;
|
||||
padding: 0 3.5%;
|
||||
}
|
||||
|
||||
h3 {
|
||||
&__title {
|
||||
margin: 0 0 10px;
|
||||
font-size: 14px;
|
||||
line-height: 17px;
|
||||
color: $color-white;
|
||||
font-size: 18px;
|
||||
font-weight: normal;
|
||||
line-height: 26px;
|
||||
margin: 0 0 8px;
|
||||
|
||||
@include mq(md, max) {
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
span {
|
||||
display: block;
|
||||
font-size: 26px;
|
||||
@include mq(lg, max) {
|
||||
margin-bottom: 8px;
|
||||
max-width: 224px;
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 15px;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
.m3-custom-newsletter-form {
|
||||
display: flex;
|
||||
position: relative;
|
||||
|
||||
.m3-custom-newsletter-form {
|
||||
position: relative;
|
||||
@include mq(lg, max) {
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
label {
|
||||
display: none;
|
||||
@include mq(lg, min) {
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
|
||||
fieldset {
|
||||
display: inline-block;
|
||||
flex: 1;
|
||||
padding: 0;
|
||||
margin-right: 16px;
|
||||
max-width: 270px;
|
||||
width: 36%;
|
||||
margin: 0;
|
||||
|
||||
@include mq(md, max) {
|
||||
@include mq(lg, max) {
|
||||
margin-bottom: 8px;
|
||||
max-width: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@include mq(lg, min) {
|
||||
margin-right: 16px;
|
||||
}
|
||||
|
||||
&:last-of-type {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
&.m3-cn-button-ok-container {
|
||||
max-width: 126px;
|
||||
margin: 0;
|
||||
@include mq(lg, min) {
|
||||
max-width: 126px;
|
||||
}
|
||||
}
|
||||
|
||||
label {
|
||||
display: none;
|
||||
}
|
||||
|
||||
input {
|
||||
width: 100%;
|
||||
height: 41px;
|
||||
padding: 0 16px;
|
||||
border: 0;
|
||||
outline: 0;
|
||||
font-size: 10px;
|
||||
line-height: 12px;
|
||||
background: $color-white;
|
||||
|
||||
@include mq(md, max) {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
input {
|
||||
border: none;
|
||||
font-size: 14px;
|
||||
outline: none;
|
||||
padding: 9px 16px;
|
||||
width: 100%;
|
||||
|
||||
@include mq(md, max) {
|
||||
font-size: 24px;
|
||||
padding: 18.5px 24px;
|
||||
}
|
||||
|
||||
&::placeholder {
|
||||
color: #142032;
|
||||
}
|
||||
|
||||
&#m3-cn-button-ok {
|
||||
background-color: #142032;
|
||||
color: $color-white;
|
||||
cursor: pointer;
|
||||
font-weight: 700;
|
||||
font-size: 14px;
|
||||
text-transform: lowercase;
|
||||
transition: all 0.15s linear;
|
||||
|
||||
@include mq(md, max) {
|
||||
font-size: 24px;
|
||||
margin-top: 8px;
|
||||
&::placeholder {
|
||||
text-transform: uppercase;
|
||||
color: $color-grey2;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background-color: lighten(#142032, 5);
|
||||
}
|
||||
&.m3-cn-button-ok {
|
||||
font-weight: 900;
|
||||
color: $color-white;
|
||||
background: $color-black;
|
||||
cursor: pointer;
|
||||
|
||||
&:active {
|
||||
background-color: darken(#142032, 5);
|
||||
@include mq(lg, max) {
|
||||
&:active {
|
||||
background: lighten($color-black, 10);
|
||||
}
|
||||
}
|
||||
|
||||
@include mq(lg, min) {
|
||||
&:hover {
|
||||
background: lighten($color-black, 10);
|
||||
}
|
||||
|
||||
&:active {
|
||||
background: $color-black;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.m3-cn-msg {
|
||||
position: absolute;
|
||||
top: calc(100% + 8px);
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: fit-content;
|
||||
line-height: 1;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
|
||||
.m3-cn-error {
|
||||
background-color: $color-white;
|
||||
border-radius: 2px;
|
||||
bottom: -28px;
|
||||
color: hsla(348, 83%, 58%, 1);
|
||||
display: table;
|
||||
left: 40%;
|
||||
margin: auto;
|
||||
padding: 3px 6px;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.m3-cn-success {
|
||||
color: $color-white;
|
||||
display: inline-block;
|
||||
font-size: 16px;
|
||||
margin-right: 20px;
|
||||
text-transform: lowercase;
|
||||
}
|
||||
|
||||
.btn-voltar {
|
||||
background-color: $color-white;
|
||||
border-radius: 2px;
|
||||
color: #f71963;
|
||||
display: inline-block;
|
||||
font-size: 14px;
|
||||
line-height: 1;
|
||||
padding: 4px 8px;
|
||||
text-transform: lowercase;
|
||||
color: $color-red;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* pop-up-newsletter */
|
||||
|
||||
.pop-up-newsletter {
|
||||
display: none;
|
||||
position: fixed;
|
||||
z-index: 10;
|
||||
width: 100%;
|
||||
top: 20%;
|
||||
|
||||
.newsletter {
|
||||
text-align: center;
|
||||
background-color: #fff;
|
||||
padding: 20px;
|
||||
display: table;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
|
||||
.close-popup {
|
||||
font-size: 35px;
|
||||
color: #000;
|
||||
padding: 5px;
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
line-height: 0.5;
|
||||
}
|
||||
|
||||
input {
|
||||
border-bottom: solid 1px #333;
|
||||
}
|
||||
}
|
||||
|
||||
.m3-custom-newsletter-form .btn-voltar {
|
||||
color: #333;
|
||||
border-color: #333;
|
||||
}
|
||||
}
|
||||
|
@ -29,7 +29,7 @@
|
||||
align-items: center;
|
||||
font-size: 12px;
|
||||
line-height: 15px;
|
||||
color: $color-grey2;
|
||||
color: $color-grey3;
|
||||
}
|
||||
|
||||
i {
|
||||
|
@ -1,6 +1,6 @@
|
||||
// fonts
|
||||
|
||||
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");
|
||||
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap");
|
||||
|
||||
$font-family: "Inter", sans-serif;
|
||||
$font-weight-light: 300;
|
||||
@ -12,10 +12,16 @@ $font-height: 1.5;
|
||||
|
||||
$color-black: #000;
|
||||
$color-white: #fff;
|
||||
|
||||
$color-blue: #00c8ff;
|
||||
$color-grey1: #e0e0e0;
|
||||
$color-grey2: #828282;
|
||||
$color-blue2: #03addc;
|
||||
|
||||
$color-red: #db4c4c;
|
||||
|
||||
$color-grey: #333333;
|
||||
$color-grey1: #e0e0e0;
|
||||
$color-grey2: #bdbdbd;
|
||||
$color-grey3: #828282;
|
||||
|
||||
// Grid breakpoints
|
||||
|
||||
@ -41,5 +47,5 @@ $z-index: (
|
||||
// avise-me: 5,
|
||||
// scroll-top: 7,
|
||||
// header-fixo: 10,
|
||||
// popup-user: 15,,,,,,,,
|
||||
// popup-user: 15,,,,,,,,,,,,,,,,
|
||||
) !default;
|
||||
|
@ -1,12 +1,6 @@
|
||||
<section class="captacao-emails-newsletter container-fluid">
|
||||
<div class="row">
|
||||
<div class="col-12 col-lg-10 offset-lg-1 col-xl-8 offset-xl-2 row">
|
||||
<div class="col-12">
|
||||
<h3>Receba novidades e <span>descontos <strong>exclusivos</strong></span></h3>
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<div class="news-form"></div>
|
||||
</div>
|
||||
</div>
|
||||
<section class="footer-newsletter">
|
||||
<div class="footer-newsletter__wrapper">
|
||||
<h3 class="footer-newsletter__title">RECEBA NOVIDADES E DESCONTOS EXCLUSIVOS</h3>
|
||||
<div class="footer-newsletter__form"></div>
|
||||
</div>
|
||||
</section>
|
||||
|
Loading…
Reference in New Issue
Block a user