-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (78 loc) · 1.45 KB
/
Copy pathstyle.css
File metadata and controls
78 lines (78 loc) · 1.45 KB
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
* {box-sizing: border-box;}
.ui-form {
max-width: 400px;
padding: 80px 30px 30px;
margin: 50px auto 30px;
background: white;
}
.ui-form h3 {
position: relative;
z-index: 5;
margin: 0 0 60px;
text-align: center;
color: #4a90e2;
font-size: 30px;
font-weight: normal;
}
.form-row {
position: relative;
margin-bottom: 40px;
}
.form-row input {
display: block;
width: 100%;
padding: 0 10px;
line-height: 40px;
font-family: 'Roboto', sans-serif;
background: none;
border-width: 0;
border-bottom: 2px solid #4a90e2;
transition: all 0.2s ease;
}
.input {
display: block;
width: 100%;
padding: 0 10px;
line-height: 40px;
font-family: 'Roboto', sans-serif;
background: none;
border-width: 0;
border-bottom: 2px solid #4a90e2;
transition: all 0.2s ease;
}
.form-row label {
position: absolute;
left: 13px;
color: #9d959d;
font-size: 20px;
font-weight: 300;
transform: translateY(-35px);
transition: all 0.2s ease;
}
.form-row input:focus, .input:focus {
outline: 0;
border-color: #F77A52;
}
.form-row input:focus + label,
.form-row input:valid + label {
transform: translateY(-60px);
margin-left: -14px;
font-size: 14px;
font-weight: 400;
outline: 0;
border-color: #F77A52;
color: #F77A52;
}
.ui-form input[type="submit"] {
width: 100%;
padding: 0;
line-height: 42px;
background: #4a90e2;
border-width: 0;
color: white;
font-size: 20px;
}
.ui-form p {
margin: 0;
padding-top: 10px;
}