-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
89 lines (69 loc) · 1.5 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
<!DOCTYPE html>
<html>
<head>
<title>MottoBotto</title>
<style>
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
font-family: Helvetica, Arial, sans-serif;
}
h2 {
margin-bottom: 20px;
height: 30px;
}
h2 a {
float: right;
font-size: 1rem;
}
.column {
width: 50%;
height: 100%;
padding: 20px;
float: left;
}
.column:first-child {
padding-right: 10px;
}
.column:last-child {
padding-left: 10px;
}
iframe {
height: calc(100vh - 30px - 20px - 20px - 20px - 10px);
}
@media only screen and (max-width: 600px) {
.column {
width: 100%;
float: none;
}
.column:first-child {
padding-right: 20px;
}
.column:last-child {
padding-left: 20px;
}
iframe {
height: 600px;
}
}
</style>
</head>
<body>
<div class="column">
<h2>
Leaderboard
</h2>
<iframe class="airtable-embed" src="https://airtable.com/embed/shr1cljqCGWTOS4MA?backgroundColor=teal&layout=card&viewControls=on" frameborder="0" onmousewheel="" width="100%"></iframe>
</div>
<div class="column">
<h2>
Mottos
<a href="readme.html">Docs</a>
</h2>
<iframe class="airtable-embed" src="https://airtable.com/embed/shr3AspddKLGE75VD?backgroundColor=teal&layout=card&viewControls=on" frameborder="0" onmousewheel="" width="100%"></iframe>
</div>
</body>
</html>