-
Notifications
You must be signed in to change notification settings - Fork 1
/
cart-en.html
58 lines (45 loc) · 1.98 KB
/
cart-en.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
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="https://static.codepen.io/assets/favicon/favicon-8ea04875e70c4b0bb41da869e81236e54394d63638a1ef12fa558a4a835f1164.ico">
<link rel="mask-icon" type="" href="https://static.codepen.io/assets/favicon/logo-pin-f2d2b6d2c61838f7e76325261b7195c27224080bc099486ddd6dccb469b8e8e6.svg"
color="#111">
<title>CodePen - a11yTour CART Services</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<style>
.container {
display: flex;
flex: 1 1 100%;
height: 100%;
min-height: 100%;
}
.cart-services {
flex: 1 0 80%;
}
.sponsors {
flex: 1 0 20%;
padding: 20px 0;
}
.img-responsive {
max-width: 100%;
height: 60px;
margin: 0 auto 60px;
display: block;
flex: 1 1 auto;
}
</style>
</head>
<body translate="no">
<div class="container">
<iframe src="https://www.streamtext.net/player?event=A11YTOURENG" frameborder="0" class="cart-services"></iframe>
<div class="sponsors">
<img class="img-responsive center-block event-sponsor-logo" src="http://a11y.tours/assets/media/sponsors/deque.png" alt="Deque">
<img class="img-responsive center-block event-sponsor-logo" src="http://a11y.tours/assets/media/sponsors/ami.png" alt="AMI Accessible Media inc">
<img class="img-responsive center-block event-sponsor-logo" src="http://a11y.tours/assets/media/sponsors/shopify.png" alt="Shopify">
<img class="img-responsive center-block event-sponsor-logo" src="http://a11y.tours/assets/media/sponsors/adobe.png" alt="Adobe">
<img class="img-responsive center-block event-sponsor-logo" src="http://a11y.tours/assets/media/sponsors/nurun.png" alt="nurun">
<img class="img-responsive center-block event-sponsor-logo" src="http://a11y.tours/assets/media/sponsors/read.png" alt="READ Initiative">
</div>
</div>
</body>
</html>