-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
166 lines (159 loc) · 4.47 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
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
<html>
<head>
<link rel="apple-touch-icon" href="./touch-icon.png">
<meta name="apple-mobile-web-app-title" content="Checklist">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-capable" content="yes">
<title>Checklist</title>
<script src="https://use.typekit.net/iso8obv.js"></script>
<script>try{Typekit.load({ async: true });}catch(e){}</script>
<style>
body {
font-family: "orator-std";
background-color: #1d1f21;
color: rgb(209, 79, 65);
font-size: 1.3rem;
padding-bottom: 3em;
}
/* Portrait */
@media only screen
and (-webkit-min-device-pixel-ratio: 2)
and (orientation: portrait) {
body { font-size: 0.9rem }
}
main {
display: grid;
grid-template-columns: repeat(16, 6.25%);
grid-template-rows: repeat(16, 6.25%);
max-width: 1024px;
min-width: 360px;
margin: 1.5rem auto;
}
a {
cursor: pointer;
}
a.closeButton {
font-family: "Wingdings";
position: absolute;
top: 0;
right: 0;
display: block;
height: 45px;
width: 45px;
line-height: 45px;
text-align: center;
font-size: 2rem;
z-index: 100;
}
h1 {
text-transform: uppercase;
}
main > h1 {
line-height: .75rem;
margin: 0;
padding-top: 0.13rem;
grid-column-start: 1;
grid-column-end: 8;
}
section > h1 {
background-color: rgb(209, 79, 65);
color: #1d1f21;
padding-left: 0.5rem;
}
object {
position: fixed;
bottom: 33%;
opacity: 0.15;
transform: rotate(-45deg);
}
dl, ul, section {
grid-column-start: 1;
grid-column-end: 17;
}
dl, ul {
display: grid;
grid-template-columns: repeat(16, 6.25%);
}
.procedure dt {
display: list-item;
list-style-type: decimal-leading-zero;
list-style-position: outside;
}
.aircraftList dt, .aircraftList li {
grid-column-start: 1;
grid-column-end: 17;
}
dt, li {
grid-column-start: 1;
grid-column-end: 13;
}
dd {
grid-column-start: 13;
grid-column-end: 17;
margin: 0;
overflow: hidden;
font-size: .75rem;
align-content: center;
line-height: 1.75rem;
}
table {
width: 100%;
}
table tr > td:nth-of-type(1) {
width: 75%;
}
li:nth-of-type(odd), tr:nth-of-type(odd) {
background-color: rgba(209, 79, 65, 0.15);
}
ul {
list-style-type: none;
padding: 0;
margin: 0;
}
li {
margin-bottom: 1em;
}
li a {
display: block;
width: 100%;
font-size: 1.5rem;
}
section.transition-start {
/* transform: translateY(-300px); */
opacity: 0
}
section.transition-end {
/* transform: translateY(0); */
opacity: 1.0
}
.bvr {
display: block;
width: 45px;
height: 45px;
margin: 1em auto;
grid-column-start: 8;
grid-column-end: 10;
}
.bvr img {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<script src="bundle.js"></script>
<script type="text/javascript">
var clicky_site_ids = clicky_site_ids || [];
clicky_site_ids.push(101062620);
(function() {
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = '//static.getclicky.com/js';
( document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0] ).appendChild( s );
})();
</script>
<noscript><p><img alt="Clicky" width="1" height="1" src="//in.getclicky.com/101062620ns.gif" /></p></noscript>
</body>
</html>