Last active
August 16, 2018 15:32
-
-
Save darkmavis1980/c2f09962c9d45d6d5a48b8ff3775c773 to your computer and use it in GitHub Desktop.
Placeholder move on focus
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>The floating label</h1> | |
<div class="input-wrapper"> | |
<input type="text" name="email" required/> | |
<label>Your email address</label> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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