-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (52 loc) · 2.37 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
<!DOCTYPE html>
<html>
<head>
<title>Dashboard - MVHacks</title>
<link href="https://fonts.googleapis.com/css?family=Poppins:400,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body style="background: #333333;">
<div style="padding: 0 20px;">
<span style="font-weight: 700; font-size: 70px; color: #ee521f;" onclick="document.documentElement.requestFullscreen();">MVHacks 2.0</span>
<span style="font-weight: 500; font-size: 30px; margin-top: -20px;">Dashboard</span>
</div>
<div style="display: flex;">
<div style="padding: 20px; width: 80%;">
<h1 style="font-size: 40px; color: #ee521f;">Announcements</h1>
<br>
<div id="theAnnouncements"></div>
</div>
<div style="max-width: 40%; min-width: 30%;">
<div style="padding: 20px; padding-bottom: 0;">
<h1 style="font-size: 40px; color: #ee521f;">Remaining Time</h1>
<span id="timeLeft" style="font-size: 80px;">12:13:18</span>
</div>
<div style="padding: 20px; padding-top: 0;">
<h1 style="font-size: 40px; color: #ee521f;">Links</h1>
<a href="https://mv-hacks.com/webex" class="links">mv-hacks.com/dashboard</a>
<a href="https://mv-hacks.com/slack" class="links">mv-hacks.com/slack</a>
<a href="https://mv-hacks.com/request-song" class="links">mv-hacks.com/request-song</a>
<a href="https://mv-hacks.com/webex" class="links">mv-hacks.com/webex</a>
</div>
<div style="padding: 20px; display: none; padding-top: 0; padding-bottom: 0;" id="spotifyDiv">
<h1 style="font-size: 40px; color: #ee521f;">Current Song</h1>
<br>
<div style="background: #222; border-radius: 8px; padding: 22px;">
<div style="display: inline;">
<img id="spotfiyImage" style="max-width: 40%;">
</div>
<div style="display: inline; float: right; text-align: right; width: 50%;">
<span id="spotifySong" style="font-size: 36px; font-weight: bold;"></span>
<span id="spotifyArtist" style="font-size: 24px; color: #ddd;"></span>
</div>
</div>
</div>
</div>
</div>
<script src="https://www.gstatic.com/firebasejs/5.0.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.0.0/firebase-firestore.js"></script>
<script type="text/javascript" src="js/spotify.js"></script>
<script type="text/javascript" src="js/countdown.js"></script>
<script type="text/javascript" src="js/announcements.js"></script>
</body>
</html>