mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
21 lines
450 B
HTML
21 lines
450 B
HTML
<div class="input-wrapper">
|
|
<input type="text" placeholder="Type here..." name="text" class="input">
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by adamgiebl - Tags: input */
|
|
.input-wrapper input {
|
|
background-color: #eee;
|
|
border: none;
|
|
padding: 1rem;
|
|
font-size: 1rem;
|
|
width: 13em;
|
|
border-radius: 1rem;
|
|
color: lightcoral;
|
|
box-shadow: 0 0.4rem #dfd9d9;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.input-wrapper input:focus {
|
|
outline-color: lightcoral;
|
|
}
|
|
</style>
|