Skip to content

Commit

Permalink
correccion exitosa modal y call-action tablet
Browse files Browse the repository at this point in the history
  • Loading branch information
SamirFront-End committed Jan 26, 2024
1 parent a297531 commit 3c8f27a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
8 changes: 8 additions & 0 deletions assets/css/call-action/text_call_action.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@
font-weight: bolder;
}


/* ===>>> SCREEN TABLET/MOBILE <<<=== */
@media (min-width: 769px) and (max-width: 1115px) {
.p-call-action {
width: 80%;
margin: auto auto 40px auto;
}
}
/* ===>>> SCREEN TABLET/MOBILE <<<=== */
@media (max-width: 768px) {
.p-call-action {
Expand Down
4 changes: 2 additions & 2 deletions assets/css/modales/subscription/container_modal.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
position: fixed;
width: 100%;
height: 100%;
z-index: 1;
opacity: 1;
z-index: -1;
opacity: 0;
top: 0;
transition: all .5s ease-in;
}
Expand Down
12 changes: 5 additions & 7 deletions assets/css/modales/subscription/form_subscription.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
.subscrition-frm {
/* background-image: url(../../../images/Cloudy_subscription.svg);
background-repeat: no-repeat;
background-size: cover; */
background-color: var(--color5);
width: 30%;
margin: 100px auto;
margin: 80px auto;
display: flex;
flex-direction: column;
justify-content: stretch;
Expand Down Expand Up @@ -62,7 +59,6 @@
margin: auto;
font-family: var(--font2);
font-weight: bolder;
/* background-color: green; */
}
.npt-subscription {
width: 90%;
Expand All @@ -78,17 +74,19 @@
.modal-btn-subscription {
width: 40%;
height: 40px;
background-color: var(--color5);
margin: 20px auto 20px auto;
background-color: var(--color2);
margin: 20px auto 40px auto;
border: none;
border-radius: 5px;
font-family: var(--font2);
font-weight: bolder;
font-size: larger;
color: var(--color5);
}
.modal-btn-subscription:hover {
cursor: pointer;
background-color: var(--color3);
color: var(--color4);
}

/* ===>>> SCREEN TABLET <<<=== */
Expand Down

0 comments on commit 3c8f27a

Please sign in to comment.