blob: 2964681c49b48ab146034689d3661b2737d60c5a (
plain)
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
|
html * {
font-family: Roboto, sans-serif;
font-size: 18px;
}
.active {
justify-content: center;
position: absolute;
max-width: 100vw;
top: 40%;
padding: 0 50px 0 50px;
}
.title {
padding-left: 30px;
margin-bottom: 10px;
line-height: 1.42857143;
color: #E0E0E0;
}
.input-group {
position: relative;
display: table;
border-collapse: separate;
transition: border-color 1s;
}
.input-field {
position: relative;
z-index: 2;
margin-bottom: 0;
text-indent: 0;
color: #727272;
background-color: #fff;
background-image: none;
box-sizing: border-box;
border: none;
outline: none;
height: 100%;
width: 100%;
}
.input-field-text {
margin-left: 30px;
box-sizing: border-box;
color: #E0E0E0;
}
.input-container {
z-index: 2;
width: 100%;
float: left;
display: flex;
align-items: center;
position: relative;
padding: 0;
border-radius: 100px 0 0 100px;
border: 2px solid;
border-color: inherit;
margin: 0;
box-sizing: border-box;
height: 10vh;
}
.button-container {
display: table-cell;
position: relative;
font-size: 0;
white-space: nowrap;
width: 1%;
height: 0;
vertical-align: middle;
border-color: inherit;
}
.button {
z-index: 2;
margin-left: -1px;
display: inline-block;
margin-bottom: 0;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
background-image: none;
background-color: #fff;
color: #727272;
padding: 4px 5vw;
height: 10vh;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border-radius: 0 100px 100px 0;
border: 2px solid;
border-color: inherit;
border-left: none;
transition: color 1s;
}
|