-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtipping.html
341 lines (301 loc) · 9.96 KB
/
tipping.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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
<head>
<style>
.flex-grid-thirds {
display: flex;
flex-wrap:wrap;
justify-content: space-between;
}
.flex-grid-thirds .left {
width: 64%;
order: 0;
}
.flex-grid-thirds .right {
width: 32%;
order: 1;
}
.flex-grid-thirds .related-articles {
order: 2;
}
.newsletter-container {
margin: .5em 0em 1em 0em;
padding: 0em;
}
.newsletter h4 {
margin-top:0em;
}
.six.column {
margin: 1em 0 0;
width: 100%;
}
.location {
left: -2000px;
}
.video-page {
margin: .5em 0em 1em 0em;
padding:56.25% 0 0 0;
position:relative;
}
.email-box input[type=submit] {
float: none;
margin-top: 1em;
}
.product-stage {
padding: 0em;
}
.card {
margin: 1em 0em;
}
a {
color: #3BA7C9;
}
.article-title {
height: 8em;
position: relative;
}
.by-line {
color: #313131;
position: absolute;
top: 5.4em;
left: 1.5em;
}
@media only screen and (max-width: 860px) {
.flex-grid-thirds .left {
order: 0;
width: 100%;
}
.flex-grid-thirds .right {
order: 2;
width: 100%;
}
.flex-grid-thirds .related-articles {
order: 1;
width: 100%;
}
.newsletter-container {
max-width: 860px;
}
.six.column {
margin: 1em 1em 0em 0em;
width: 45%;
}
.product-stage {
background-color: unset;
}
.txt-center {
text-align: center;
}
.article-title {
height: 7em;
position: relative;
}
.by-line {
color: #313131;
position: absolute;
top: 4em;
left: 1.5em;
}
}
@media only screen and (max-width: 500px) {
.flex-grid-thirds .right {
width: 100%;
}
.newsletter, .card {
border-radius: 4px;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
-webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.35);
-moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.35);
}
.six.column {
width: 100%;
}
.article-title {
height: 9em;
position: relative;
}
.by-line {
color: #313131;
position: absolute;
top: 6em;
left: 1.5em;
}
}
@media only screen and (max-width: 360px) {
.article-title {
height: 10em;
position: relative;
}
.by-line {
color: #313131;
position: absolute;
top: 7em;
left: 1.5em;
}
}
</style>
</head>
<body>
<div class="live-page">
<div>
<h1 class="txt-center">
Beyond The UX Tipping Point
</h1>
</div>
<div class="flex-grid-thirds">
<!-- LEFT COLUMN -->
<div class="left">
<div>
<div class="video-page">
<iframe
src="https://player.vimeo.com/video/164258612"
style="position:absolute;top:0;left:0;width:100%;height:100%;"
frameborder="0"
allow="autoplay; encrypted-media; fullscreen"
allowfullscreen
></iframe>
</div>
</div>
<div>
<p>
<a href="https://www.uie.com/wp-assets/transcripts/beyond_the_ux_tipping_point.html" target="_blank">Video Transcript</a> | <a href="https://asset.uie.com/slides/beyond_the_ux_tipping_point.pdf" target="_blank">Presentation Slides</a>
</p>
<p>
In this presentation, Jared shares:
</p>
<ul>
<li>
Which path organizations take to become design-infused
</li>
<li>
How a centralized UX team is a stepping stone to a more UX
capable organization
</li>
<li>
Why the market needs to demand a better experience before it
will matter
</li>
<li>
What your organization will need to do to cross the UX Tipping
Point
</li>
</ul>
</div>
</div>
<!-- END LEFT COLUMN -->
<!-- RIGHT COLUMN -->
<div class="right">
<section class="newsletter-container email-box" id="subscribe">
<form class="newsletter" action="https://reg.uie.com/newsletter/" method="post">
<h4>Want to improve your organization’s UX strategy?</h4>
<div class="p" id="success">Subscribe to our new newsletter <em>UX Strategy with Jared Spool</em>. Learn how successful organizations have made UX strategic through research, articles, and advice sent straight to your inbox.
</div>
<div id="form">
<div class="row">
<div class="six column">
<label for="email" class="sr-only">Email</label>
<input type="email" name="email" id="email" placeholder="Email" required="">
</div>
<div class="field six column">
<label for="fname" class="sr-only">First Name</label>
<input type="text" name="fname" id="fname" placeholder="First Name">
</div>
<!--<div class="four column">
<label for="lname" class="sr-only">Last Name</label>
<input type="text" name="lname" id="lname" placeholder="Last Name">
</div>-->
<div class="location">
<label for="location" class="sr-only">Location</label>
<input type="text" name="location" id="location" placeholder="Location">
</div>
<input type="hidden" name="lname" id="lname" placeholder="Last Name">
</div>
<div class="field row last">
<p class="small promise">
Center Centre – UIE values your privacy. We will never sell your email address.
</p>
<input type="submit" value="Sign Me Up">
</div>
<input type="hidden" id="listid" name="listid" value="382de78e4c">
<input type="hidden" id="interestid" name="interestid" value="b2e886c648">
<input type="hidden" name="successurl" value="https://uie.com#success">
<input type="hidden" name="directsignup" value="https://mailchi.mp/uie.com/uxstrategy">
</div>
<style>
#successMessage {display: none;}
.p {margin-bottom:.5em;}
</style>
<div id="successMessage">
<p>Success! You've been added.</p>
<p>Thank you for subscribing to <em>UX Strategy with Jared Spool.</em></p>
</div>
</form>
</section>
</div>
<!-- END RIGHT COLUMN -->
<!-- RELATED ARTICLES -->
<div class="related-articles">
<h4 class="txt-center">
Want to learn more? Check out these articles:
</h4>
<div class="product-stage">
<div class="card">
<a href="https://articles.uie.com/beyond_ux_tipping_point/" target="_blank" class="article-title">
<div class="card-body">
<p><strong>Beyond the UX Tipping Point</strong></p>
</div>
<p class="by-line">By: Jared M. Spool</p>
</a>
</div>
<div class="card">
<a href="https://articles.uie.com/driving-product-teams-to-become-more-design-mature/" target="_blank" class="article-title">
<div class="card-body">
<p><strong>Driving Product Teams To Become More Design Mature</strong></p>
</div>
<p class="by-line">By: Jared M. Spool</p>
</a>
</div>
<div class="card">
<a href="https://playbook.uie.com/blog/increasing-an-organization-s-ux-design-maturity-our-not-so-secret-sauce" target="_blank" class="article-title">
<div class="card-body">
<p><strong>Increasing an Organization’s UX Design Maturity: Our Not-So-Secret Sauce</strong></p>
</div>
<p class="by-line">By: Jared M. Spool</p>
</a>
</div>
<div class="card">
<a href="https://articles.uie.com/design_infused/" target="_blank" class="article-title">
<div class="card-body">
<p><strong>Preparing Organizations to Become Design-Infused</strong></p>
</div>
<p class="by-line">By: Jared M. Spool</p>
</a>
</div>
<div class="card">
<a href="https://articles.uie.com/user_exposure_hours/" target="_blank" class="article-title">
<div class="card-body">
<p><strong>Fast Path to a Great UX – Increased Exposure Hours</strong></p>
</div>
<p class="by-line">By: Jared M. Spool</p>
</a>
</div>
<div class="card">
<a href="https://articles.uie.com/the-experience-vision-a-self-fulfilling-ux-strategy/" target="_blank" class="article-title">
<div class="card-body">
<p><strong>The Experience Vision: A Self-Fulfilling UX Strategy</strong></p>
</div>
<p class="by-line">By: Jared M. Spool</p>
</a>
</div>
<div class="card">
<a href="https://articles.uie.com/teaching-ux-designers-to-always-be-learning/" target="_blank" class="article-title">
<div class="card-body">
<p><strong>Teaching UX Designers to Always Be Learning</strong></p>
</div>
<p class="by-line">By: Jared M. Spool</p>
</a>
</div>
</div>
</div>
<!-- END RELATED ARTICLES -->
</div>
</div>
</body>