-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·85 lines (84 loc) · 3.63 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
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-144989548-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-144989548-1');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Student Driver</title>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/css/tachyons.min.css"/>
</head>
<style>
@media (min-width: 60em) {
.flex-row-reverse-l {
-webkit-flex-direction: row-reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
}
}
</style>
<body class="sans-serif near-black fw3">
<main>
<div class="cover">
<div class="mw9 center ph5-l ph3">
<header class="cf ph3">
<h1 class="fl-ns mb0 mt3 pt1"><a href="" class="link gold"><span class="dib-l dib-m dn">Student</span> Driver</a></h1>
<nav class="fr-ns mt3 pt3">
<a href="" class="b link dark-gray hover-gold ml3">The Banana Split Keyboard</a>
<a style="cursor: not-allowed;" href="" class="b link moon-gray ml3">d-a-s-h-e-s</a>
<a style="cursor: not-allowed;" href="" class="b link moon-gray ml3">Student Driver: TDA</a>
<a href="" class="b link dark-gray hover-gold ml3">|</a>
<a href="" class="b link moon-gray ml3">About</a>
</nav>
</header>
<section class="ph3 pv5-ns pv4 relative overflow-hidden">
<h2 class="f-headline-l f-subheadline-ns f1 fw8 measure mb4-l mb3 relative z-1">The<br>Banana<br>Split<br>Keyboard</h2>
<p class="f3-ns f4 mt2 mb4">The split keyboard you've been waiting for.</p>
<div>
<a href="https://apps.apple.com/us/app/the-banana-split-keyboard/id1465495793?ls=1" class="">
<img class="w5" src="img/apple.svg" alt="">
</a>
</div>
<img src="img/app-1.png" alt="" class="absolute right-2 top-0 w-50 db-l dn mt6">
</section>
</div>
</div>
<section class="bg-gold white tc-ns pv6-l pv5 cf relative overflow-hidden">
<div class="mw8 center ph5-l ph4">
<h3 class="mt0 f-headline-l f-subheadline-ns f1 fw8 mb2">What're you waiting for?</h3>
<p class="f2-l f3 mb5-l mb4 fw2 lh-copy">Ergonomic typing on iPad Pro awaits!</p>
<div>
<a href="https://apps.apple.com/us/app/the-banana-split-keyboard/id1465495793?ls=1" class="">
<img class="w5" src="img/apple.svg" alt="">
</a>
</div>
</div>
</section>
<div class="mw9 center ph5-l ph4">
<footer class="pv5 cf bt b--black-10">
<div class="w-100 mb4 bb b--black-10 pb5-l pb4 cf">
<h3 class="mt3-l mt0 mb0 f1-l f2-m f3 fl">🚘</h3>
<span class="f-subheadline-l f2-m f3 fr">⌨️</span>
</div>
<div class="w-50-l">
<div class="w-third mb4 fl lh-copy">
<span class="db mt2 mb3 gray">Company</span>
<a href="" class="db mb1 fw7 link moon-gray">About</a>
</div>
<div class="w-third mb4 fl lh-copy">
<span class="db mt2 mb3 gray">Legal</span>
<a href="" class="db mb1 fw7 link moon-gray">Privacy</a>
</div>
</div>
<p class="gray">© 2019 Student Driver</p>
</footer>
</div>
</main>
</body>
</html>