-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathformy.css
142 lines (142 loc) · 3.83 KB
/
formy.css
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#formy {
font-weight: 600;
color: #3A3A3A;
line-height: 1.5;
margin: 0 auto; }
@media screen and (max-width: 768px) {
#formy {
width: 75%; } }
@media screen and (min-width: 769px) {
#formy {
width: 50%; } }
@media screen and (max-width: 414px) {
#formy {
width: 100%; } }
#formy #result {
width: 100%;
height: 50px;
border: 1px solid #1abc9c;
text-align: center;
line-height: 50px;
color: #1abc9c;
font-size: 1.2em;
margin-bottom: 40px;
position: relative;
border-radius: 4px;
display: none; }
#formy #result svg {
fill: #1abc9c;
width: 20px;
margin-right: 10px;
position: relative;
top: 2px; }
#formy #result.invalidRequest {
border: 1px solid #e74c3c;
color: #e74c3c; }
#formy #result.invalidRequest svg {
fill: #e74c3c; }
#formy .input-field {
position: relative;
margin-bottom: 40px; }
#formy .input-field i {
position: absolute;
left: 0;
top: 0; }
#formy .input-field i svg {
width: 25px;
fill: #3A3A3A;
-webkit-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }
#formy .input-field i svg.active {
fill: #1abc9c; }
#formy .input-field i svg.invalid {
fill: #e74c3c; }
#formy .input-field input {
background: none;
border: none;
border-bottom: 1px solid #3A3A3A;
margin-left: 3.2em;
width: calc((100% - 3.2em) - 50px);
padding-right: 50px;
position: relative;
outline: none;
line-height: 2.4em; }
#formy .input-field input:focus {
border-color: #1abc9c;
box-shadow: 0 1px 0 0 #1abc9c; }
#formy .input-field input.invalid {
border-color: #e74c3c;
box-shadow: 0 1px 0 0 #e74c3c; }
#formy .input-field textarea {
border: none;
border-bottom: 1px solid #3A3A3A;
margin-left: 3.2em;
width: calc(100% - 3.2em);
outline: none;
resize: none;
overflow: hidden;
box-sizing: border-box;
resize: none;
line-height: normal;
padding-top: 15px;
font-family: inherit; }
#formy .input-field textarea:focus {
border-color: #1abc9c;
box-shadow: 0 1px 0 0 #1abc9c; }
#formy .input-field .lenghtCounter {
position: absolute;
right: 0;
top: 0;
font-weight: 400;
display: none; }
#formy .input-field .lenghtCounter span {
font-size: 0.8em; }
#formy .input-field label {
position: absolute;
top: 0;
left: 0;
margin-left: 2.35em;
width: calc(100% - 2.35em);
-webkit-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
cursor: text;
user-sect: none; }
#formy .input-field label.active {
top: -17px;
font-size: calc(100% - 2px);
margin-left: 2.65em;
color: #1abc9c; }
#formy .input-field label.invalid {
color: #e74c3c; }
#formy .input-field label.filled:not(.active) {
font-size: calc(100% - 2px);
margin-left: 2.65em;
top: -17px; }
#formy .submit {
width: 120px;
height: 45px;
background-color: #fff;
border: 1px solid #1abc9c;
margin-left: 3.2em;
border-radius: 4px;
cursor: pointer;
font-weight: 600;
-webkit-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
color: #3A3A3A;
text-align: left;
padding-left: 20px;
position: relative; }
#formy .submit:hover {
background-color: #1abc9c;
color: #fff; }
#formy .submit:hover svg {
fill: #fff; }
#formy .submit svg {
fill: #1abc9c;
width: 20px;
position: absolute;
right: 15px;
top: 11px;
-webkit-transition: all .3s ease-in-out;
transition: all .3s ease-in-out; }