Skip to content

Instantly share code, notes, and snippets.

@alexlecco
Created December 1, 2020 14:25
Show Gist options
  • Select an option

  • Save alexlecco/9d6a91216ce5907b63fb088199cc8b42 to your computer and use it in GitHub Desktop.

Select an option

Save alexlecco/9d6a91216ce5907b63fb088199cc8b42 to your computer and use it in GitHub Desktop.
mario-email
<style>
body {
background-image: url(https://firebasestorage.googleapis.com/v0/b/test-app-161f0.appspot.com/o/mario-email%2Fbackground.jpg?alt=media&token=a71c7ac5-23bc-4dbc-9ba3-43fe5b0a3e79);
width: 100%;
height: 100vh;
background-repeat: no-repeat;
background-size: cover;
position: relative;
background-color: #005099;
}
h1 {
font-size: 1.8rem;
}
.title {
text-align: center;
color: white;
padding: 0 25px;
}
.redirect-button {
background-image: url(https://firebasestorage.googleapis.com/v0/b/test-app-161f0.appspot.com/o/mario-email%2Fbutton.png?alt=media&token=d9b1a2dd-f5c0-437f-91ca-6a0676562d9a);
}
.email-layout {
display: flex;
flex-direction: column;
align-items: center;
padding-top: 60%;
padding-bottom: 200px;
}
.redirect-button {
background: url(https://firebasestorage.googleapis.com/v0/b/test-app-161f0.appspot.com/o/mario-email%2Fbutton.png?alt=media&token=d9b1a2dd-f5c0-437f-91ca-6a0676562d9a);
background-size: cover;
width: 290px;
height: 60px;
margin-top: 20px;
color: white;
font-weight: 700;
}
.button-container {
bottom: 20px;
right: 0;
left: 0;
}
</style>
<div class="container">
<div class="email-layout">
<h1 class="title">¡Felicidades, eres un participante en la Sixbell Cup!</h1>
<a
href="https://mogul.gg/"
class="button-container"
target="_blank"
rel="noopener"
>
<input class="redirect-button" type="submit" value="finalizar registro" />
</a>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment