mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
26 lines
544 B
HTML
26 lines
544 B
HTML
<input type="text" id="email-id" name="text" class="input__email" placeholder="Email Address">
|
|
<style>
|
|
/* From Uiverse.io by sabbircoder07 - Tags: email, input, box-shadow */
|
|
.input__email {
|
|
width: 100%;
|
|
padding: 10px 18px;
|
|
font-size: 14px;
|
|
font-family: inherit;
|
|
box-shadow: 0 0 0 1px #ffe3e3;
|
|
border: none;
|
|
border-radius: 20px;
|
|
background-color: #fff5f5;
|
|
}
|
|
|
|
.input__email::placeholder {
|
|
color: #ce9797;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.input__email:focus {
|
|
outline: none;
|
|
box-shadow: 0 0 0 1px #ffe3e3;
|
|
border: none;
|
|
}
|
|
|
|
</style>
|