mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-27 20:50:21 +08:00
27 lines
549 B
HTML
27 lines
549 B
HTML
<input type="text" name="text" class="input">
|
|
<input type="text" name="text" class="input">
|
|
<input type="text" name="text" class="input">
|
|
<style>
|
|
/* From Uiverse.io by Shoh2008 - Tags: input */
|
|
.input {
|
|
max-width: 190px;
|
|
width: 40px;
|
|
height: 40px;
|
|
outline: none;
|
|
margin: 5px;
|
|
transition: .5s;
|
|
border: none;
|
|
border-radius: 10px;
|
|
padding: 10px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
transform: rotate(90deg);
|
|
}
|
|
|
|
input:focus {
|
|
width: 150px;
|
|
transform: rotate(0);
|
|
}
|
|
</style>
|