mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
32 lines
634 B
HTML
32 lines
634 B
HTML
|
|
<input type="text" name="text" class="input" placeholder="Type your text">
|
|
<style>
|
|
/* From Uiverse.io by Alaner-xs - Tags: input */
|
|
.input {
|
|
background-color: #383838;
|
|
border: 1ex solid none;
|
|
border-top-width: 1.7em;
|
|
margin: 0;
|
|
padding: 0;
|
|
color: #383838;
|
|
word-wrap: break-word;
|
|
outline: 7px solid #383838;
|
|
height: 30px;
|
|
font-size: 17px;
|
|
text-align: center;
|
|
transition: all 1s;
|
|
max-width: 190px;
|
|
font-weight: bold;
|
|
font-family: 'Courier New', Courier, monospace;
|
|
}
|
|
|
|
.input:hover {
|
|
border-top-width: 0.2em;
|
|
background-color: #f1e8e8;
|
|
}
|
|
|
|
.input:focus {
|
|
border-top-width: 0.2em;
|
|
background-color: #f1e8e8;
|
|
}
|
|
</style>
|