Last active
October 29, 2023 09:53
-
-
Save mugan86/ad672b780f6c26adc2f7233e9613ab06 to your computer and use it in GitHub Desktop.
Formulario básico
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* https://formbold.com/templates/newsletter-subscription-form*/ | |
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap'); | |
* { | |
margin: 0; | |
padding: 0; | |
box-sizing: border-box; | |
} | |
body { | |
font-family: "Inter", sans-serif; | |
} | |
.formbold-main-wrapper { | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
padding: 48px; | |
} | |
.formbold-form-wrapper { | |
margin: 0 auto; | |
max-width: 550px; | |
width: 100%; | |
background: white; | |
} | |
.formbold-form-input { | |
width: 100%; | |
padding: 13px 22px; | |
border-radius: 6px; | |
border: 1px solid #DDE3EC; | |
background: white; | |
font-weight: 500; | |
font-size: 16px; | |
color: #536387; | |
outline: none; | |
resize: none; | |
} | |
.formbold-form-input:focus { | |
border-color: #6a64f1; | |
box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05); | |
} | |
.formbold-email-subscription-form { | |
display: flex; | |
gap: 15px; | |
} | |
.formbold-btn { | |
display: inline-flex; | |
align-items: center; | |
gap: 8px; | |
font-size: 16px; | |
border-radius: 5px; | |
padding: 13px 25px; | |
border: none; | |
font-weight: 500; | |
background-color: #6A64F1; | |
color: white; | |
cursor: pointer; | |
} | |
.formbold-btn:hover { | |
box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { component$, useStyles$ } from '@builder.io/qwik'; | |
import formStyles from './index.css?inline'; | |
export default component$(() => { | |
useStyles$(formStyles); | |
return ( | |
<div class="formbold-main-wrapper"> | |
<div class="formbold-form-wrapper"> | |
<form> | |
<div class="formbold-email-subscription-form"> | |
<input | |
type="email" | |
name="email" | |
id="email" | |
placeholder="Introduzca su correo electrónico" | |
class="formbold-form-input" | |
required | |
/> | |
<button class="formbold-btn"> | |
Suscribirme | |
<svg | |
width="16" | |
height="16" | |
viewBox="0 0 16 16" | |
fill="none" | |
xmlns="http://www.w3.org/2000/svg" | |
> | |
<g clip-path="url(#clip0_1661_1158)"> | |
<path | |
d="M2.494 0.937761L14.802 7.70709C14.8543 7.73587 14.8978 7.77814 14.9282 7.8295C14.9586 7.88087 14.9746 7.93943 14.9746 7.99909C14.9746 8.05875 14.9586 8.11732 14.9282 8.16868C14.8978 8.22005 14.8543 8.26232 14.802 8.29109L2.494 15.0604C2.44325 15.0883 2.3861 15.1026 2.32818 15.1017C2.27027 15.1008 2.21358 15.0848 2.16372 15.0553C2.11385 15.0258 2.07253 14.9839 2.04382 14.9336C2.01511 14.8833 2.00001 14.8264 2 14.7684V1.22976C2.00001 1.17184 2.01511 1.11492 2.04382 1.06461C2.07253 1.0143 2.11385 0.97234 2.16372 0.942865C2.21358 0.913391 2.27027 0.897419 2.32818 0.896524C2.3861 0.895629 2.44325 0.909842 2.494 0.937761ZM3.33333 8.66576V13.0771L12.5667 7.99909L3.33333 2.92109V7.33243H6.66667V8.66576H3.33333Z" | |
fill="white" | |
/> | |
</g> | |
<defs> | |
<clipPath id="clip0_1661_1158"> | |
<rect width="16" height="16" fill="white" /> | |
</clipPath> | |
</defs> | |
</svg> | |
</button> | |
</div> | |
</form> | |
</div> | |
</div> | |
); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment