mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
23 lines
576 B
HTML
23 lines
576 B
HTML
<input placeholder="Enter your text..." class="input" name="text" type="text">
|
|
<style>
|
|
/* From Uiverse.io by Yaseen549 - Tags: input */
|
|
.input {
|
|
background-color: #212121;
|
|
max-width: 190px;
|
|
height: 40px;
|
|
padding: 10px;
|
|
/* text-align: center; */
|
|
border: 2px solid white;
|
|
border-radius: 5px;
|
|
/* box-shadow: 3px 3px 2px rgb(249, 255, 85); */
|
|
}
|
|
|
|
.input:focus {
|
|
color: rgb(0, 255, 255);
|
|
background-color: #212121;
|
|
outline-color: rgb(0, 255, 255);
|
|
box-shadow: -3px -3px 15px rgb(0, 255, 255);
|
|
transition: .1s;
|
|
transition-property: box-shadow;
|
|
}
|
|
</style>
|