Skip to content

Instantly share code, notes, and snippets.

@darkmavis1980
Last active August 16, 2018 15:32
Show Gist options
  • Save darkmavis1980/c2f09962c9d45d6d5a48b8ff3775c773 to your computer and use it in GitHub Desktop.
Save darkmavis1980/c2f09962c9d45d6d5a48b8ff3775c773 to your computer and use it in GitHub Desktop.
Placeholder move on focus
<h1>The floating label</h1>
<div class="input-wrapper">
<input type="text" name="email" required/>
<label>Your email address</label>
</div>
$padding: 14px;
$input-line-height: 16px;
.input-wrapper{
padding: $padding;
position: relative;
input {
padding: $padding;
line-height: $input-line-height;
font-size: 14px;
outline: none;
border:none;
border-bottom: 1px solid #777;
&:focus {
border-color: #2196F3;
border-width: medium medium 2px;
}
}
input ~ label {
position: absolute;
top: ($padding*2);
left: $padding + 4px;
font-size: 14px;
opacity: 0.4;
transition: 0.2s ease all;
}
input:focus ~ label,
input:not(:focus):valid ~ label {
top: 0;
color: #2196F3;
opacity: 1;
font-size: 11px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment