This repository has been archived by the owner on Jan 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
live.html
207 lines (189 loc) · 5.96 KB
/
live.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
---
title: Live
layout: nothing
---
<html>
<head>
<title>MAHacks Live</title>
<link
href="https://fonts.googleapis.com/css?family=Muli:300,400,700,900"
rel="stylesheet"
/>
<link href="https://unpkg.com/[email protected]/css/basscss.min.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
h1,
h2,
h3,
p,
li,
tr,
td,
a,
span {
font-family: Muli, Helvetica, Arial, sans-serif;
color: white;
}
body {
background: linear-gradient(#06030a, #361b59) fixed;
}
.gradient-underline {
position: relative;
z-index: 1;
display: inline-block;
font-weight: 900;
font-size: 2.5rem;
letter-spacing: -0.5px;
line-height: 100%;
color: white;
}
.gradient-underline:after {
content: '';
display: block;
position: relative;
top: 0;
width: 100%;
height: 0.2em;
background: linear-gradient(to left, #5cc2d6, #985cd6);
z-index: -1;
transition: 0.15s;
}
.gradient-underline:hover:after {
height: 0.5em;
top: -0.3em; /* difference btwn initial and final underline thickness */
margin-bottom: -0.3em; /* difference btwn initial and final underline thickness */
}
.container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
max-width: 48rem;
margin-left: auto;
margin-right: auto;
margin-top: 4rem;
margin-bottom: 4rem;
}
.center {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
width: 100%;
grid-gap: 1rem;
}
.right-grid {
display: grid;
grid-template-rows: repeat(3, 1fr);
grid-gap: 1.5rem;
}
table {
color: white;
}
th,
td {
padding: 0.25rem;
}
table {
border-collapse: collapse;
width: 100%;
}
tr:nth-child(even) {
background-color: #985cd6;
}
.big-button {
display: block;
width: 8rem;
line-height: 3rem;
background-color: #985cd6;
font-weight: bold;
border-radius: 10px;
}
@media (min-width: 320px) and (max-width: 480px) {
.grid {
grid-template-columns: unset;
}
.right-grid {
grid-gap: 1rem;
}
.item {
padding: 1rem;
}
}
</style>
</head>
<body>
<div class="container">
<h1 class="gradient-underline mb3">MAHacks Live</h1>
<div class="grid">
<div class="center">
<h1 class="mb1">Schedule</h1>
<div class="schedule">
<table>
<tr>
<th>Day</th>
<th>Time</th>
<th>Name</th>
</tr>
{% include schedule_item.html day="Saturday" time_start="11:00 AM" time_end="12:30 PM" name="Check-in begins" %}
{% include schedule_item.html day="Saturday" time_start="12:30 PM" time_end="1:00 PM" name="Opening ceremony begins" %}
{% include schedule_item.html day="Saturday" time_start="1:00 PM" time_end="2:00 PM" name="Team + Idea Formation; Hacking Begins" %}
{% include schedule_item.html day="Saturday" time_start="2:15 PM" time_end="3:30 PM" name="Intro to programming workshop" %}
{% include schedule_item.html day="Saturday" time_start="3:00 PM" time_end="4:30 PM" name="Build your first website w Hack Club" %}
{% include schedule_item.html day="Saturday" time_start="3:00 PM" time_end="3:30 PM" name="Intro to Design w/ iZotope" %}
{% include schedule_item.html day="Saturday" time_start="4:00 PM" time_end="4:30 PM" name="Women-in-STEM panel" %}
{% include schedule_item.html day="Saturday" time_start="6:00 PM" time_end="7:00 PM" name="Dinner" %}
{% include schedule_item.html day="Saturday" time_start="7:00 PM" time_end="8:00 PM" name="Intro to Sound Design w iZotope" %}
{% include schedule_item.html day="Saturday" time_start="8:00 PM" time_end="9:00 PM" name="Game Design Workshop" %}
{% include schedule_item.html day="Saturday" time_start="9:00 PM" time_end="9:00 PM" name="Sleeping area opens" %}
{% include schedule_item.html day="Saturday" time_start="10:00 PM" time_end="10:30 PM" name="Become an MAHacks Organizer workshop" %}
{% include schedule_item.html day="Sunday" time_start="12:00 AM" time_end="1:00 AM" name="Midnight snack" %}
{% include schedule_item.html day="Sunday" time_start="8:30 AM" time_end="8:45 AM" name="Submissions due" %}
{% include schedule_item.html day="Sunday" time_start="9:30 AM" time_end="11:00 AM" name="Judging" %}
{% include schedule_item.html day="Sunday" time_start="11:00 AM" time_end="11:30 AM" name="KAHOOT!" %}
{% include schedule_item.html day="Sunday" time_start="11:30 AM" time_end="12:00 AM" name="Closing ceremony" %}
</table>
</div>
</div>
<div class="other-info">
<div class="right-grid">
<div class="center item">
<h2>Slack</h2>
<p class="mb2">Talk to your fellow hackers!</p>
<a href="https://mahacks.com/slack" class="big-button">Join Slack</a>
</div>
<div class="center item">
<h2>Food</h2>
<p class="mb2">Gotta eat, gotta eat, gotta....</p>
<p class="h3">Be sure to keep Slack open so we can notify you when it's your turn to eat! We'll be calling people up in groups.<br><br> Snacks are available throughout the entire event.</p>
</div>
<div class="center item">
<h2>Mentors</h2>
<p class="mb2">Need some assistance here, ya dig.</p>
<p class="h3">Use the #findamentor channel on Slack to ask a mentor to come to you.</p>
</div>
<div class="center item">
<h2>WiFi</h2>
<p class="mb2">Can you hear me?</p>
<p class="h3">SSID: Moose-Guests<br>Password: ProudOrange</p>
</div>
</div>
</div>
</div>
</div>
<script>
setTimeout(() => {
location.reload()
},(5*60000)) // in minutes
</script>
</body>
</html>