mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-27 20:50:21 +08:00
33 lines
670 B
HTML
33 lines
670 B
HTML
<div class="inputBox">
|
|
<input placeholder="Write here..." type="text" required="">
|
|
<span>First name :</span>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by saidbl1 - Tags: input, clean, nice */
|
|
.inputBox {
|
|
position: relative;
|
|
}
|
|
|
|
.inputBox input {
|
|
padding: 15px 20px;
|
|
outline: none;
|
|
background: transparent;
|
|
border-radius: 5px;
|
|
color: #212121;
|
|
border: 1px solid#212121;
|
|
font-size: 1em;
|
|
}
|
|
|
|
.inputBox span {
|
|
position: absolute;
|
|
left: 0;
|
|
font-size: 0.7em;
|
|
transform: translateX(14px) translateY(-7.5px);
|
|
padding: 0 6px 1px 5px;
|
|
border-radius: 2px;
|
|
background: #e8e8e8;
|
|
letter-spacing: 1px;
|
|
border: 1px solid #212121;
|
|
color: #212121;
|
|
}
|
|
</style>
|