mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
18 lines
356 B
HTML
18 lines
356 B
HTML
|
|
<input type="text" name="text" class="input" placeholder="Type something here....">
|
|
<style>
|
|
/* From Uiverse.io by Yaseen549 - Tags: input */
|
|
.input {
|
|
color: #8707ff;
|
|
border: 2px solid #8707ff;
|
|
border-radius: 10px;
|
|
padding: 10px 25px;
|
|
background: transparent;
|
|
max-width: 190px;
|
|
}
|
|
|
|
.input:active {
|
|
box-shadow: 2px 2px 15px #8707ff inset;
|
|
}
|
|
|
|
</style>
|