-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
156 lines (155 loc) · 4.08 KB
/
index.html
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html>
<style>
input {
-webkit-font-smoothing: antialiased;
list-style: none;
font: inherit;
color: currentColor;
width: 100%;
border: 0;
height: 1.1876em;
margin: 0;
display: block;
min-width: 0;
background: none;
box-sizing: content-box;
animation-name: mui-auto-fill-cancel;
letter-spacing: inherit;
animation-duration: 10ms;
-webkit-tap-highlight-color: transparent;
padding: 18.5px 14px;
padding-top: 10.5px;
padding-bottom: 10.5px;
}
fieldset {
-webkit-font-smoothing: antialiased;
list-style: none;
text-align: left;
color: rgba(0, 0, 0, 0.87);
cursor: text;
display: inline-flex;
font-size: 1rem;
box-sizing: border-box;
align-items: center;
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
font-weight: 400;
line-height: 1.1876em;
letter-spacing: 0.00938em;
position: relative;
border-radius: 4px;
}
.a {
-webkit-font-smoothing: antialiased;
list-style: none;
text-align: left;
color: rgba(0, 0, 0, 0.87);
cursor: text;
display: inline-flex;
font-size: 1rem;
box-sizing: border-box;
align-items: center;
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
font-weight: 400;
line-height: 1.1876em;
letter-spacing: 0.00938em;
position: relative;
border-radius: 4px;
}
label {
-webkit-font-smoothing: antialiased;
list-style: none;
text-align: left;
box-sizing: inherit;
color: rgba(0, 0, 0, 0.54);
padding: 0;
font-size: 1rem;
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
font-weight: 400;
line-height: 1;
letter-spacing: 0.00938em;
display: block;
transform-origin: top left;
top: 0;
left: 0;
position: absolute;
transition: color 200ms cubic-bezier(0, 0, 0.2, 1) 0ms,
transform 200ms cubic-bezier(0, 0, 0.2, 1) 0ms;
z-index: 1;
pointer-events: none;
transform: translate(14px, 12px) scale(1);
}
.b {
-webkit-font-smoothing: antialiased;
font-size: 0.875rem;
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
font-weight: 400;
line-height: 1.43;
letter-spacing: 0.01071em;
color: rgba(0, 0, 0, 0.87);
list-style: none;
text-align: left;
box-sizing: inherit;
border: 0;
margin: 0;
display: inline-flex;
padding: 0;
position: relative;
min-width: 0;
flex-direction: column;
vertical-align: top;
}
legend {
-webkit-font-smoothing: antialiased;
list-style: none;
color: rgba(0, 0, 0, 0.87);
cursor: text;
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
font-weight: 400;
line-height: 1.1876em;
letter-spacing: 0.00938em;
pointer-events: none;
box-sizing: inherit;
width: auto;
height: 11px;
display: block;
padding: 0;
font-size: 0.75em;
max-width: 0.01px;
text-align: left;
transition: max-width 50ms cubic-bezier(0, 0, 0.2, 1) 0ms;
visibility: hidden;
}
span {
-webkit-font-smoothing: antialiased;
list-style: none;
color: rgba(0, 0, 0, 0.87);
cursor: text;
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
font-weight: 400;
line-height: 1.1876em;
letter-spacing: 0.00938em;
pointer-events: none;
font-size: 0.75em;
text-align: left;
visibility: hidden;
box-sizing: inherit;
display: inline-block;
padding-left: 5px;
padding-right: 5px;
}
</style>
<body>
<div class="b">
<label>Enter</label>
<div class="a">
<input aria-invalid="false" type="text" value="" />
<fieldset aria-hidden="true">
<legend class="PrivateNotchedOutline-legendLabelled-87">
<span>Enter</span>
</legend>
</fieldset>
</div>
</div>
</body>
</html>