mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
21 lines
454 B
HTML
21 lines
454 B
HTML
|
|
<input type="text" name="text" class="input" placeholder="Type here!">
|
|
<style>
|
|
/* From Uiverse.io by Yaseen549 - Tags: neumorphism, input */
|
|
.input {
|
|
border: none;
|
|
border-radius: 15px;
|
|
padding: 15px;
|
|
background-color: #e8e8e8;
|
|
box-shadow: 6px 6px 12px #ffffff,
|
|
-6px -6px 12px #c5c5c5;
|
|
font-size: medium;
|
|
font-weight: bold;
|
|
max-width: 200px;
|
|
}
|
|
|
|
.input:focus {
|
|
outline-color: white;
|
|
place-content: "Enter your message!";
|
|
}
|
|
</style>
|