mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
19 lines
374 B
HTML
19 lines
374 B
HTML
<input placeholder="Enter text here" class="input-style" type="text">
|
|
|
|
<style>
|
|
/* From Uiverse.io by JayRamoliya - Tags: input */
|
|
.input-style {
|
|
padding: 10px;
|
|
border: 2px solid #ccc;
|
|
border-radius: 5px;
|
|
font-size: 16px;
|
|
color: #555;
|
|
outline: none;
|
|
}
|
|
|
|
.input-style:focus {
|
|
border-color: #007bff;
|
|
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
}
|
|
|
|
</style>
|