mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
28 lines
659 B
HTML
28 lines
659 B
HTML
<input placeholder="Enter your email" class="input" name="email" type="email">
|
|
<button class="button">Subscribe</button>
|
|
<style>
|
|
/* From Uiverse.io by deepak16375 - Tags: subscription, email, input */
|
|
.input {
|
|
max-width: 190px;
|
|
padding: 15px;
|
|
font-size: 17px;
|
|
color: black;
|
|
border-top-left-radius: .5em;
|
|
border-bottom-left-radius: .5em;
|
|
border: 2px solid #fff;
|
|
margin-right: -10px;
|
|
}
|
|
|
|
.button {
|
|
border: none;
|
|
background-color: #1363DF;
|
|
text-decoration: none;
|
|
padding: 15px;
|
|
padding-bottom: 17px;
|
|
font-size: 17px;
|
|
color: #fff;
|
|
border-top-right-radius: .5em;
|
|
border-bottom-right-radius: .5em;
|
|
cursor: pointer;
|
|
}
|
|
</style>
|