mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
26 lines
597 B
HTML
26 lines
597 B
HTML
<input class="input" placeholder="Email" type="email">
|
|
<style>
|
|
/* From Uiverse.io by LightAndy1 - Source: Cohen - https://uiverse.io/cohencoo/proud-husky-84 - Tags: simple, animation, login, email, input, dark */
|
|
.input {
|
|
margin-top: 1rem;
|
|
border-radius: 10px;
|
|
outline: 2px solid #00a6fb;
|
|
border: 0;
|
|
font-family: "Montserrat", sans-serif;
|
|
background-color: #d6f1ff;
|
|
outline-offset: 3px;
|
|
padding: 10px 12.5px;
|
|
transition: all 0.2s ease;
|
|
width: 250px;
|
|
}
|
|
|
|
.input:hover {
|
|
background-color: #fff;
|
|
}
|
|
|
|
.input:focus {
|
|
outline-offset: -6px;
|
|
background-color: #d6f1ff;
|
|
}
|
|
|
|
</style>
|