mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
21 lines
503 B
HTML
21 lines
503 B
HTML
<input placeholder="Enter password..." name="text" type="password" class="password">
|
|
<style>
|
|
/* From Uiverse.io by Christardev - Tags: button, form, input, animated, border, card template */
|
|
.password {
|
|
outline: none;
|
|
max-width: 190px;
|
|
padding: 8px;
|
|
background-color: #d4cbcb;
|
|
border-radius: 12px;
|
|
border: 4px solid #000000;
|
|
width: auto;
|
|
font-weight: bold;
|
|
font-style: italic;
|
|
}
|
|
|
|
.password:hover {
|
|
background-color: #6ad5f0;
|
|
outline: none;
|
|
border: 4px solid #000000;
|
|
}
|
|
</style>
|