mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
72 lines
1.3 KiB
HTML
72 lines
1.3 KiB
HTML
<div class="card">
|
|
<span class="card__title">Subscribe</span>
|
|
<p class="card__content">Get fresh web design resources delivered straight to your inbox every week.
|
|
</p>
|
|
<div class="card__form">
|
|
<input placeholder="Your Email" type="text">
|
|
<button class="sign-up"> Sign up</button>
|
|
</div>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by satyamchaudharydev - Tags: subscription, form */
|
|
.card {
|
|
width: 240px;
|
|
height: 254px;
|
|
padding: 0 15px;
|
|
text-align: center;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
background: #fff;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.card > * {
|
|
margin: 0;
|
|
}
|
|
|
|
.card__title {
|
|
font-size: 23px;
|
|
font-weight: 900;
|
|
color: #333;
|
|
}
|
|
|
|
.card__content {
|
|
font-size: 13px;
|
|
line-height: 18px;
|
|
color: #333;
|
|
}
|
|
|
|
.card__form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
}
|
|
|
|
.card__form input {
|
|
margin-top: 10px;
|
|
outline: 0;
|
|
background: rgb(255, 255, 255);
|
|
box-shadow: transparent 0px 0px 0px 1px inset;
|
|
padding: 0.6em;
|
|
border-radius: 14px;
|
|
border: 1px solid #333;
|
|
color: black;
|
|
}
|
|
|
|
.card__form button {
|
|
border: 0;
|
|
background: #111;
|
|
color: #fff;
|
|
padding: 0.68em;
|
|
border-radius: 14px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sign-up:hover {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
</style>
|