-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjudging.html
179 lines (174 loc) · 4.85 KB
/
judging.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="icon"
type="image/jpg"
sizes="107x107"
href="images/TechTeamArrow.jpg"
/>
<!-- Bootstrap -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/glitch.css" />
<title>Ideathon 2022</title>
<!-- Fonts -->
<style>
@font-face {
font-family: Bungee-Shade;
src: url("./fonts/Bungee-Shade.otf");
}
@font-face {
font-family: Oswald;
src: url("./fonts/Oswald.ttf");
}
@font-face {
font-family: RobotoSerif;
src: url("./fonts/RobotoSerif.ttf");
}
body {
font-family: RobotoSerif;
font-size: 1.2rem;
color: white;
}
h1,
h2 {
font-family: Bungee-Shade;
color: white;
}
h2 {
font-family: Bungee-Shade;
color: #4face6;
font-size: 2.5rem;
}
h3,
h4 {
font-family: Oswald;
}
.nav-hover:hover {
background-color: #0e7aa5;
}
.register:hover {
color: white !important;
}
.border {
border-color: white !important;
}
.border:hover {
border-color: #26f478 !important;
}
@media (min-width: 480px) {
.title {
font-size: 4rem;
}
.content {
height: 60vh;
overflow: auto;
}
}
</style>
</head>
<body style="background-color: black">
<!-- Navbar -->
<nav
class="navbar navbar-expand-lg navbar-light"
style="background-color: #26f478"
>
<div class="container">
<a class="navbar-brand" href="index.html"><h4>IDEATHON 2022</h4></a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div
class="nav-links collapse navbar-collapse"
id="navbarSupportedContent"
>
<ul class="navbar-nav ms-auto">
<li class="nav-item mx-md-2">
<a
class="nav-link nav-hover register"
style="color: red"
href="https://forms.gle/imvFVagaS8inJ9h86"
><h4>REGISTER HERE</h4></a
>
</li>
<li class="nav-item mx-md-2">
<a
class="nav-link nav-hover"
style="color: black"
href="schedule.html"
><h4>SCHEDULE</h4></a
>
</li>
<li class="nav-item mx-md-2">
<a
class="nav-link nav-hover"
style="color: black"
href="judging.html"
><h4>JUDGES & MENTORS</h4></a
>
</li>
<li class="nav-item mx-md-2">
<a
class="nav-link"
style="color: #0e7aa5"
href="https://www.uchicagotechteam.com/"
><h4>TECHTEAM</h4></a
>
</li>
</ul>
</div>
</div>
</nav>
<!-- Header -->
<div class="container">
<div class="row">
<h1 class="text-center mt-3 title glitch" style="font-size: 3rem">
JUDGES & MENTORS
</h1>
</div>
<div class="row my-4">
<div class="col-12">
<div class="border border-5 p-4 event">
<h2>Judges & Mentors include:</h2>
<h4>
Angela Li: Sociology PhD candidate at Princeton University,
UChicago alum & TechTeam 2017-2018 Co-Chair
</h4>
<h4>
Julia Oran: Software engineer at Code for America, UChicago alum &
TechTeam 2017-2018 Co-Chair
</h4>
<h4>
Nicholas Marchio: Data scientist at UChicago's Mansueto Institute
for Urban Innovation
</h4>
<h3 class="pt-3" style="color: red">
More mentors & judges will be announced soon!
</h3>
</div>
</div>
</div>
</div>
<!-- Bootstrap -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"
></script>
</body>
</html>