-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_forms.scss
More file actions
30 lines (27 loc) · 723 Bytes
/
_forms.scss
File metadata and controls
30 lines (27 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
@charset "UTF-8";
@mixin input-text($color:#ccc) {
&::-webkit-input-placeholder {
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
width: 100%;
display: block;
border: none;
padding: 10px 0;
border-bottom: solid 1px $color;
background-color: transparent;
-webkit-transition: all 0.3s cubic-bezier(.64,.09,.08,1);
transition: all 0.3s cubic-bezier(.64,.09,.08,1);
&:focus {
box-shadow: none;
outline: none;
border-bottom-width: 2px;
&::-webkit-input-placeholder {
color: $color;
font-size: 11px;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
visibility: visible !important;
}
}
}