mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
21 lines
433 B
HTML
21 lines
433 B
HTML
|
|
<input type="password" name="text" class="input" placeholder="Enter your password!">
|
|
<style>
|
|
/* From Uiverse.io by Yaseen549 - Tags: input */
|
|
.input {
|
|
border: 2px solid #e8e8e8;
|
|
padding: 15px;
|
|
border-radius: 10px;
|
|
background-color: #212121;
|
|
font-size: small;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
|
|
.input:focus {
|
|
outline-color: white;
|
|
background-color: #212121;
|
|
color: #e8e8e8;
|
|
box-shadow: 5px 5px #888888;
|
|
}
|
|
</style>
|