about summary refs log tree commit diff
path: root/client/src/App.css
blob: cf0e5299f703b5867a7bf79693b3d7e8c93e99bc (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
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
.title {
  padding-left: 30px;
  margin-bottom: 10px;
  line-height: 1.42857143;
  color: #ffffff;
}

.response-text {
  margin-bottom: 0;
  color: #C5C5D3;
}

.right-item {
  color: #ffffff;
  padding-right: 30px;
  text-align: right;
}

.copy-text {
  color: #c5c5d3;
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

.response-container {
  display: flex;
  align-items: center;
  margin: 15px 30px 0 30px;
  height: 14vh;
  justify-content: space-between;
  border-radius: 0 5vh 5vh 5vh;
  background-color: #ffffff;
}

.input-field {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  text-indent: 0;
  color: #3A3A5C;
  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: #C5C5D3;
}

.input-container {
  z-index: 2;
  width: 100%;
  float: left;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
  border-radius: 5vh 0 0 5vh;
  margin: 0;
  box-sizing: border-box;
  height: 10vh;
  background-color: white;
}

.button-container {
  display: table-cell;
  position: relative;
  font-size: 0;
  white-space: nowrap;
  width: 1%;
  height: 0;
  vertical-align: middle;
}

.button {
  z-index: 2;
  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: #3A3A5C;
  padding: 4px 5vw;
  height: 10vh;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 0 5vh 5vh 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}

strong {
  font-weight: normal;
  color: #3A3A5C;
}

a {
  text-decoration: none;
}

.disabled {
  background-color: #ff1a61;
  color: #ffffff;
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  45% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.2; }
  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; } }

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  45% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.2; }
  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; } }

.ball-pulse > div:nth-child(1) {
  -webkit-animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s -0.48s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.ball-pulse > div:nth-child(2) {
  -webkit-animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s -0.36s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.ball-pulse > div:nth-child(3) {
  -webkit-animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.ball-pulse > div {
  background-color: #3A3A5C;
  width: 6px;
  height: 6px;
  margin: 5px;
  border-radius: 100%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block; }