mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-27 20:50:21 +08:00
36 lines
613 B
HTML
36 lines
613 B
HTML
<input type="password" name="text" class="input" pattern="\d+" placeholder="Numbers only or shake">
|
|
<style>
|
|
/* From Uiverse.io by Galahhad - Tags: input */
|
|
.input {
|
|
max-width: 190px;
|
|
padding: 12px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
box-shadow: 2px 2px 7px 0 rgb(0, 0, 0, 0.2);
|
|
outline: none;
|
|
color: dimgray;
|
|
}
|
|
|
|
.input:invalid {
|
|
animation: justshake 0.3s forwards;
|
|
color: red;
|
|
}
|
|
|
|
@keyframes justshake {
|
|
25% {
|
|
transform: translateX(5px);
|
|
}
|
|
|
|
50% {
|
|
transform: translateX(-5px);
|
|
}
|
|
|
|
75% {
|
|
transform: translateX(5px);
|
|
}
|
|
|
|
100% {
|
|
transform: translateX-(5px);
|
|
}
|
|
}
|
|
</style>
|