-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (62 loc) · 3.22 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Oasis</title>
<meta name="description" content="Oasis is a web extension designed to keep you feeling calm while delivering you crucial information.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/x-icon" href="assets/favicon.png"/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-173463616-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-173463616-1');
</script>
<link href="https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Muli:wght@400;500;600;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/79899b02f3.js" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src='js/script.js' type="text/javascript"></script>
<script src='js/information.js' type="text/javascript"></script>
<link rel="stylesheet" href="css/dist/normalize.css" type="text/css">
<!-- <link rel="stylesheet" href="https://unpkg.com/[email protected]/build/pure-min.css" integrity="sha384-cg6SkqEOCV1NbJoCu11+bm0NvBRc8IYLRGXkmNrqUBfTjmMYwNKPWBTIKyw9mHNJ" crossorigin="anonymous"> -->
<link rel="stylesheet" href="css/dist/main.css" type="text/css">
</head>
<body>
<div id="dash-wrapper" class="dash-wrapper">
<div class="image-date-location">
<div class="island-wrapper">
<div id="island-night" class="island-night"></div>
<div id="island-day" class="island-day"></div>
</div>
<div class="date-wrapper">
<div class="lower-wrapper">
<h3 id="time" class="time"></h3>
<div class="date-month-wrapper">
<h1 id="date" class="date"></h1> <h1 id="month" class="month"></h1>
</div>
</div>
</div>
</div>
<div id="location" class="location">
<i class="fa fa-map-marker" aria-hidden="true"></i> Boston, MA, United States
</div>
<div class="info-tab" id="info-tab">
<div class="semicircle" id="semicircle">
<img src="assets/images/tab-arrow.png" id="tab-arrow">
</div>
<section class="info-panel-wrapper initiallyHidden">
<div class="info-panel-shape" id="info-panel">
<p id="information-text"></p>
</div>
</section>
</div>
</div>
</body>
<script src="js/lottie.js"></script>
<script src="js/index.js"></script>
<script src="js/moment.js"></script>
<script src="js/date.js"></script>
<script src="js/shift.js"></script>
</html>