This repository has been archived by the owner on May 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
82 lines (72 loc) · 2.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<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>Collapsible</title>
<link rel="stylesheet" href="https://internal.skipsolabs.com/assets/limitless/css/bootstrap.css?v=1.68.448">
<link rel="stylesheet" href="https://internal.skipsolabs.com/css/../limitless/assets/css/core.css?v=1.68.448">
<style>
html, body, #page {
width: 100vw;
height: 100vh;
background-color: #f8f8f8;
color: #333;
}
.d-flex {
max-width: 70%;
height: 100vh;
margin: 0 15%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#navbar-first {
width: 100%;
position: absolute;
top: 0;
left: 0;
}
</style>
</head>
<body>
<div id="page">
<div id="navbar-first" class="navbar navbar-lg no-padding no-box-shadow sk-big-navbar navigation-bar">
<ul class="nav navbar-nav nav-tabs nav-tabs-bottom bottom-divided no-margin">
<li><a href="#startups">All Startups</a></li>
<li><a href="#combinators">Combinators</a></li>
<li><a href="#usa">USA</a></li>
<li><a href="#europe">Europe</a></li>
<li><a href="#asia">Asia</a></li>
<li><a href="#challenges">Challenges</a></li>
<li><a href="#designcontests">Design Contests</a></li>
<li><a href="#devws">Dev Workshops</a></li>
<li><a href="#businessws">Business Workshops</a></li>
<li><a href="#marketingsessions">Marketing Sessions</a></li>
<li><a href="#credits">Credits</a></li>
</ul>
</div>
<div class="d-flex">
<img src="/logo.png" class="img-responsive" aria-hidden="true">
<h5>Resize page to see it in action, or switch between landscape and portrait mode</h5>
<p id="page-dimens"></p>
</div>
</div>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/dom4/2.0.0/dom4.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.6.3/js/all.js" integrity="sha384-EIHISlAOj4zgYieurP0SdoiBYfGJKkgWedPHH4jCzpCXLmzVsw1ouK59MuUtP4a1" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/resize-sensor@0.0.6/ResizeSensor.min.js"></script>
<script src="/dist/collapsible.js"></script>
<script>
var pageDimens = document.querySelector('#page-dimens');
pageDimens.innerText = window.innerWidth + 'x' + window.innerHeight;
window.onresize = function () {
pageDimens.innerText = window.innerWidth + 'x' + window.innerHeight;
}
// Initialize collapsible
var collapsible = new Collapsible('.navbar-nav', 200);
collapsible.render();
</script>
</html>