mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
20 lines
434 B
HTML
20 lines
434 B
HTML
<input placeholder="Type here..." class="input" name="text" type="text">
|
|
<style>
|
|
/* From Uiverse.io by Mhyar-nsi - Tags: input, ring */
|
|
.input {
|
|
font-family: monospace;
|
|
max-width: 190px;
|
|
outline: none;
|
|
border: 1px solid #dadada;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
background-color: #f3f7fe;
|
|
transition: .3s;
|
|
color: #3b82f6;
|
|
}
|
|
|
|
.input:focus {
|
|
border: 1px solid #3b82f6;
|
|
box-shadow: 0 0 0 4px #3b83f65f
|
|
}
|
|
</style>
|