mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-27 20:50:21 +08:00
28 lines
592 B
HTML
28 lines
592 B
HTML
<input placeholder="Type here" class="input" name="text" type="text">
|
|
<style>
|
|
/* From Uiverse.io by Cornerstone-04 - Tags: input */
|
|
.input {
|
|
max-width: 190px;
|
|
height: 30px;
|
|
border: 2px solid transparent;
|
|
outline: none;
|
|
border-bottom: 2px solid #3f3f3f;
|
|
caret-color: #3f3f3f;
|
|
background-color: #212121;
|
|
padding: 5px;
|
|
transition: .5s linear;
|
|
font-family: monospace;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.input:focus {
|
|
border: 2px solid #fa4753;
|
|
caret-color: #fa4753;
|
|
color: #fa4753;
|
|
box-shadow: 4px 4px 10px #070707;
|
|
}
|
|
|
|
.input:focus::placeholder {
|
|
color: #fa4753;
|
|
}
|
|
</style>
|