-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
612 lines (540 loc) · 27.2 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
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
<!DOCTYPE html>
<html lang="en">
<head>
<title>Chezy Champs</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:600,500,400,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="shortcut icon" href="files/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="files/home.css">
<!--<link rel="stylesheet" type="text/css" href="files/scrolling-nav.css">
<script type="text/javascript" src="files/scrolling-nav.css"></script>
<script type="text/javascript" src="files/jquery.easing.min.css"></script>-->
<script type="text/javascript">
$(document).ready(function() {
handleScroll();
});
function toggleHidden() {
var el = $('.rule-changes');
if ($("#toggle").html() == " Read More") {
console.log("open");
el.height("auto");
autoHeight = el.height();
el.height("20vw").animate({height: autoHeight}, 1000);
}
else {
autoHeight = el.height();
el.height(autoHeight).animate({height: "20vw"}, 1000);
}
// var el = $('.rule-changes');
// el.height("auto");
// curHeight = el.height();
// $('#extra p').toggleClass('hidden');
// autoHeight = el.height();
// if($('#extra p').hasClass('hidden')) {
// console.log("hidden");
// $('#extra p').removeClass('hidden');
// el.height("49vw").animate({height: "auto"}, 1000);
// setTimeout(
// function()
// {
// $('#extra p').addClass('hidden');
// }, 1000);
// }
// else {
// el.height(curHeight).animate({height: autoHeight}, 1000);
// }
if ($("#toggle").html() == " Read More")
$(".rule-holder .social-container").html("<i class=\"fa fa-angle-double-up\"></i><span id=\"toggle\"> Read Less</span>");
else
$(".rule-holder .social-container").html("<i class=\"fa fa-angle-double-down\"></i><span id=\"toggle\"> Read More</span>");
}
$(function() {
$('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
|| location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
});
function isScrolledIntoView(elem) {
var $elem = $(elem);
var $window = $(window);
var docViewTop = $window.scrollTop();
var docViewBottom = docViewTop + $window.height();
var elemTop = $elem.offset().top;
var elemBottom = elemTop + $elem.height();
return ((elemBottom <= docViewBottom) && (elemTop >= docViewTop));
}
window.onscroll = function() {
handleScroll();
};
function handleScroll() {
if(isScrolledIntoView(".header-text")) {
$('#nav-rules').removeClass('active');
$('#nav-home').addClass('active');
$('#nav-about').removeClass('active');
$('#nav-info').removeClass('active');
$('#nav-sponsors').removeClass('active');
$('#nav-webcast').removeClass('active');
$('#nav-schedule').removeClass('active');
$('#nav-map').removeClass('active');
}
if(isScrolledIntoView(".about-text")) {
$('#nav-rules').removeClass('active');
$('#nav-about').addClass('active');
$('#nav-home').removeClass('active');
$('#nav-info').removeClass('active');
$('#nav-sponsors').removeClass('active');
$('#nav-webcast').removeClass('active');
$('#nav-schedule').removeClass('active');
$('#nav-map').removeClass('active');
}
if(isScrolledIntoView(".info-text")) {
$('#nav-rules').removeClass('active');
$('#nav-info').addClass('active');
$('#nav-home').removeClass('active');
$('#nav-about').removeClass('active');
$('#nav-sponsors').removeClass('active');
$('#nav-webcast'.)removeClass('active');
$('#nav-schedule').removeClass('active');
$('#nav-map').removeClass('active');
}
if(isScrolledIntoView(".schedule-text")) {
$('#nav-rules').removeClass('active');
$('#nav-info').removeClass('active');
$('#nav-schedule').addClass('active');
$('#nav-home').removeClass('active');
$('#nav-about').removeClass('active');
$('#nav-sponsors').removeClass('active');
$('#nav-webcast').removeClass('active');
$('#nav-map').removeClass('active');
}
if(isScrolledIntoView(".rules-header")) {
$('#nav-rules').addClass('active');
$('#nav-info').removeClass('active');
$('#nav-home').removeClass('active');
$('#nav-about').removeClass('active');
$('#nav-sponsors').removeClass('active');
$('#nav-map').removeClass('active');
$('#nav-webcast').removeClass('active');
$('#nav-schedule').removeClass('active');
}
if(isScrolledIntoView(".spr-text")) {
$('#nav-rules').removeClass('active');
$('#nav-sponsors').addClass('active');
$('#nav-home').removeClass('active');
$('#nav-info').removeClass('active');
$('#nav-about').removeClass('active');
$('#nav-webcast').removeClass('active');
$('#nav-map').removeClass('active');
$('#nav-schedule').removeClass('active');
}
if(isScrolledIntoView(".map-text")) {
$('#nav-rules').removeClass('active');
$('#nav-sponsors').removeClass('active');
$('#nav-home').removeClass('active');
$('#nav-info').removeClass('active');
$('#nav-about').removeClass('active');
$('#nav-webcast').removeClass('active');
$('#nav-schedule').removeClass('active');
$('#nav-map').addClass('active');
}
if(isScrolledIntoView(".webcast-text")) {
$('#nav-rules').removeClass('active');
$('#nav-sponsors').removeClass('active');
$('#nav-home').removeClass('active');
$('#nav-info').removeClass('active');
$('#nav-about').removeClass('active');
$('#nav-webcast').addClass('active');
$('#nav-map').removeClass('active');
$('#nav-schedule').removeClass('active');
}
if(window.mobileAndTabletcheck) {
var height=$(window).scrollTop();
height=height/5-80;y=-height-10;
var button=y.toString();
var z=button+"px";
var scroll=height.toString();
var x=scroll+"px";
document.getElementById("parallax").style.backgroundPosition = "0px " + x;
}
}
window.mobileAndTabletcheck = function() {
var check = false;
(function(a){if(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino|android|ipad|playbook|silk/i.test(a)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(a.substr(0,4)))check = true})(navigator.userAgent||navigator.vendor||window.opera);
return check;
}
</script>
</head>
<body>
<div class="main-continer">
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">
<img src="https://media.team254.com/web/chezy-champs/chezy-logo.svg" height="60px">
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse in" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li id="nav-home"><a href="#home">HOME</a></li>
<li id="nav-about"><a href="#about">ABOUT</a></li>
<li id="nav-info"><a href="#info">INFORMATION</a></li>
<li id="nav-map"><a href="#map">MAP</a></li>
<li id="nav-schedule"><a href="#schedule">SCHEDULE</a></li>
<li id="nav-rules"><a href="#rules">RULES</a></li>
<li id="nav-sponsors"><a href="#sponsors">SPONSORS</a></li>
<!-- <li id="nav-webcast"><a href="#webcast">WEBCAST</a></li> -->
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<div class="placeholder" id="home"></div>
<div class="header">
<div class="header-img" id="parallax"></div>
<div class="header-text">
<img src="files/chezy.svg">
</div>
<!-- <div class="header-divider"></div> -->
<div class="header-blurb">
The best in the west
</div>
</div>
<div class="placeholder" id="about"></div>
<div class="about">
<div class="about-header">ABOUT</div>
<div class="about-text">
This fall, <a href='https://team254.com' target=_blank>Team 254</a> is hosting the tenth annual Chezy Champs, a premiere off-season FIRST Robotics competition event. 46 teams will come together in San Jose, California to battle it out to determine the best in the west. Chezy Champs is free and open to the public.
</div>
<!-- <div class="about-text">
<em>Due to the COVID-19 pandemic, Chezy Champs 2021 is not open to the public.</em>
</div> -->
<div class="badge-container">
<div class="badge-icon"><p class="number">46</p><p class="text">Teams</p></div>
<div class="badge-icon"><p class="number">3</p><p class="text">Days</p></div>
</div>
<div class="about-text">
Questions? Contact us at <script>document.write('<'+'a'+' '+'h'+'r'+'e'+'f'+'='+"'"+'m'+'a'+'&'+'#'+'1'+'0'+'5'+';'+'l'+'t'+'o'+'&'+'#'+'5'+'8'+';'+'&'+'#'+'9'+'9'+';'+'h'+'e'+'z'+'%'+'7'+'9'+'c'+'h'+'%'+'6'+'1'+'m'+'p'+'s'+'&'+'#'+'6'+'4'+';'+'t'+'%'+'6'+'5'+'&'+'#'+'9'+'7'+';'+'m'+'&'+'#'+'5'+'0'+';'+'%'+'3'+'5'+'&'+'#'+'5'+'2'+';'+'%'+'2'+'&'+'#'+'6'+'9'+';'+'%'+'6'+'3'+'o'+'%'+'&'+'#'+'5'+'4'+';'+'D'+"'"+'>'+'c'+'&'+'#'+'1'+'0'+'4'+';'+'e'+'z'+'y'+'&'+'#'+'9'+'9'+';'+'h'+'a'+'m'+'p'+'s'+'&'+'#'+'6'+'4'+';'+'t'+'&'+'#'+'1'+'0'+'1'+';'+'&'+'#'+'9'+'7'+';'+'m'+'&'+'#'+'5'+'0'+';'+'&'+'#'+'5'+'3'+';'+'4'+'&'+'#'+'4'+'6'+';'+'&'+'#'+'9'+'9'+';'+'o'+'m'+'<'+'/'+'a'+'>');</script><noscript>[Turn on JavaScript to see the email address]</noscript>
</div>
</div>
<div class="placeholder" id="info"></div>
<div class="info-container">
<div class="info">
<div class="info-header">INFORMATION</div>
<div class="info-text">
Chezy Champs is free and open to the public.
<br /><br />
<!-- The up-to-date list of competing teams, along with match results (once the event starts) can be found on <a href='https://www.thebluealliance.com/event/2023cc?list' target=_blank>The Blue Alliance</a>.
<br /><br />
The event will be live streamed. During the event, the webcast can be found on <a href='https://www.thebluealliance.com/event/2023cc?list' target=_blank>The Blue Alliance</a>. -->
<p class="thin-text" style="padding-top: 40px;"><span class="bold-text">When: </span>Saturday and Sunday, September 27 - September 29, 2024</p>
<p class="thin-text"><span class="bold-text">Where: </span>Bellarmine College Preparatory, San Jose, California</p>
<p class="thin-text"><span class="bold-text">Registration: </span>$400</p>
<!-- <p class="thin-text"><span class="bold-text">Capacity: </span>38 teams</p> -->
</div>
</div>
<div class=" link-container">
<div class="link" style="border-bottom-style:none">
<div class="link-header">Team Application</div>
<div class="link-text">
<!-- Apply for Chezy Champs using this form. Selections will be made based on criteria that include competitiveness, locality, and other factors. Applications close on May 19th and invitations will be sent by mid-June -->
Applications are now closed. If you are interested in joining the waiting list, fill out the application form.
<!-- Coming soon... -->
<!-- Closed for this year -->
</div>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSe5rZw1AYZiv2KEpoDJK1dy7GWeO69SdzTyfPaX3SVmek_I7Q/viewform" target=_blank>
<div class="button-container">
<div class="button-inverted">
Application Form
<i class="fa fa-chevron-right"></i>
</div>
</div>
</a>
</div>
<div class="link" style="border-bottom-style:none">
<div class="link-header">Volunteer Signups</div>
<div class="link-text">
<!-- Coming soon... -->
We need many volunteers to make Chezy Champs a success! If you are interested in volunteering, please fill out this form.
<!-- Closed for this year -->
</div>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSfodN-bRT_KRem5wGANpLSTcxQXlAlGWp9_ipr82wUxDQOZiw/viewform?usp=sf_link" target=_blank>
<div class="button-container">
<div class="button-inverted">
Volunteer Form
<i class="fa fa-chevron-right"></i>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="placeholder" id="map"></div>
<div class="map">
<a href="//media.team254.com/2024/09/8f61079e-CampusMap2024-v2.pdf" target=_blank><img src="//media.team254.com/2024/09/975c07d7-CampusMap2024-v2.png"></a>
<div class="map-blurb">
<div class="map-header">MAP</div>
<p class="map-text">The event is located at Bellarmine College Prep at <em><a href='https://www.google.com/maps/place/780+Emory+St,+San+Jose,+CA+95110' target=_blank>780 Emory St. San Jose (click for map)</a></em>. Note that this is not the address that will come up online for Bellarmine, so be careful.</p>
<!-- <div class="link-text black"><em>Note that for 2022, the Stockton St. entrance and parking lot is closed for construction.</em></div> -->
<p class="map-text">Chezy Champs has two parking areas which are not directly connected to each other:</p>
<div class="link-header black">Main (Arena) Parking</div>
<div class="link-text black">Take Stockton Ave to <em><a href='https://www.google.com/maps/place/780+Emory+St,+San+Jose,+CA+95110' target=_blank>780 Emory St. San Jose (click for map)</a></em></div>
<div class="link-header black">Pit Parking</div>
<div class="link-text black">Limited pit parking is available at <em><a href='https://www.google.com/maps/place/960+W+Hedding+St,+San+Jose,+CA+95126' target=_blank>960 W. Hedding St. San Jose (click for map)</a></em></div>
<p class="map-text"> </p>
<p class="map-text">Note that due to construction this year, pit parking is reduced from prior years and there is a new traffic pattern.</p>
<!-- <div class="link-header black">Trailer Parking</div>
<div class="link-text black">Trailer parking (at your own risk) is available in the main 960 W. Hedding lot (<a href='https://media.team254.com/2022/08/8ccf0798-CampusMap2022-trailer-v1.pdf' target=_blank>linked map</a>). We take no responsibility for trailers parked at Chezy Champs.</div> -->
<!-- <div class="link-header black">Parking Map</div>
<div class="link-text black">For 2022, we have several additional parking lots available:</div>
<a href="https://media.team254.com/2022/09/97d407dc-ChezyParking-v1.pdf" target=_blank><img src="https://media.team254.com/2022/09/902e07b4-ChezyParking-v1.png"></a> -->
<!-- <p class="map-text">For 2021, all participants must check-in, provide proof of COVID-19 vaccination, and receive an event wristband at the outdoor check-in desk (marked as "C" on the map at left) before being permitted into the event.</p> -->
</div>
</div>
<div class="placeholder" id="schedule"></div>
<div class="schedule-container">
<div class="schedule">
<table class="schedule-text">
<tr>
<td>
<table class="schedule-table">
<tr class="schedule-date">
<td colspan="2">Friday, September 27</td>
</tr>
<tr>
<td>6pm</td>
<td>Pits Open to Teams, Load-in Begins</td>
</tr>
<tr>
<td>7-9pm</td>
<td>Open Practice Matches</td>
</tr>
<tr>
<td>9:30pm</td>
<td>Venue Closes</td>
</tr>
</table>
</td>
<td>
<table class="schedule-table">
<tr class="schedule-date">
<td colspan="2">Saturday, September 28</td>
</tr>
<tr>
<td>8am</td>
<td>Venue Opens</td>
</tr>
<tr>
<td>9-9:30am</td>
<td>Driver Meeting</td>
</tr>
<tr>
<td>9:30-9:45am</td>
<td>Opening Ceremonies</td>
</tr>
<tr>
<td>9:45am-12pm</td>
<td>Qualification Matches</td>
</tr>
<tr>
<td>12-1pm</td>
<td>Lunch Break</td>
</tr>
<tr>
<td>1-7pm</td>
<td>Qualification Matches</td>
</tr>
<tr>
<td>7:30pm</td>
<td>Venue Closes</td>
</tr>
</table>
</td>
<td>
<table class="schedule-table" style="float: clear;">
<tr class="schedule-date">
<td colspan="2">Sunday, September 29</td>
</tr>
<tr>
<td>8:30am</td>
<td>Venue Opens</td>
</tr>
<tr>
<td>9:15-9:30am</td>
<td>Opening Ceremonies</td>
</tr>
<tr>
<td>9:30-11am</td>
<td>Qualification Matches</td>
</tr>
<tr>
<td>11:30am-12pm</td>
<td>Alliance Selection</td>
</tr>
<tr>
<td>12-1pm</td>
<td>Lunch Break</td>
</tr>
<tr>
<td>1-4:30pm</td>
<td>Elimination Matches & Closing Ceremonies</td>
</tr>
<tr>
<td>6pm</td>
<td>Venue Closes</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</div>
<div class="placeholder" id="rules"></div>
<div class="rules">
<div class="rules-header">RULES</div>
<div class="rule-container">
<div class="deadlift">
<img src="https://media.team254.com/2024/03/969a07e3-2024-robot-skinnycrop.gif">
</div>
<div class="rule-changes">
<!-- <p style="display:block">Coming soon... Contribute your ideas <a href='https://www.chiefdelphi.com/t/chezy-champs-2024-rule-change-ideas/464327/152' target=_blank>on Chief Delphi</a>.</p> -->
<p style="display:block"><b>Chezy Champs will be played under the CRESCENDO rules with modifications as specified <a href="https://media.team254.com/2024/09/919d07c7-CC24-RuleChanges-v2.pdf" target=_blank>here</a> (last updated September 7, 2024).</b></p>
<!-- <p style="display:block"><b>Chezy Champs' COVID protocols and rules for 2022 are specified <a href="https://media.team254.com/2022/08/940f07bb-CC22-COVIDProtocols-v1.pdf" target=_blank>here</a>. All participants are required to comply at all times and may be teams disqualified for noncompliance (see rule changes above).</b></p> -->
<!-- <p style="display:block">Previous revisions of rule changes (no longer valid): <a href="https://media.team254.com/2022/08/8e250795-CC22-RuleChanges-v1.pdf" target=_blank>v1</a>.</p> -->
</div>
<!-- <div class="rule-holder">
<a style="cursor:pointer" onclick="toggleHidden()" class="social-container">
<i class="fa fa-angle-double-down"></i>
<span id="toggle"> Read More</span>
</a>
</div> -->
</div>
</div>
<div class="placeholder" id="sponsors"></div>
<div class="sponsor-container">
<div class="sponsor-img-container">
<div class="sponsor-img"></div>
</div>
<div class="sponsor-header">SPONSORS</div>
<div class="spr-text" style="display:inline-block!important"><i>
Interested in sponsoring Chezy Champs? Contact us at <script>document.write('<'+'a'+' '+'h'+'r'+'e'+'f'+'='+"'"+'m'+'a'+'&'+'#'+'1'+'0'+'5'+';'+'l'+'t'+'o'+'&'+'#'+'5'+'8'+';'+'&'+'#'+'9'+'9'+';'+'h'+'e'+'z'+'%'+'7'+'9'+'c'+'h'+'%'+'6'+'1'+'m'+'p'+'s'+'&'+'#'+'6'+'4'+';'+'t'+'%'+'6'+'5'+'&'+'#'+'9'+'7'+';'+'m'+'&'+'#'+'5'+'0'+';'+'%'+'3'+'5'+'&'+'#'+'5'+'2'+';'+'%'+'2'+'&'+'#'+'6'+'9'+';'+'%'+'6'+'3'+'o'+'%'+'&'+'#'+'5'+'4'+';'+'D'+"'"+'>'+'c'+'&'+'#'+'1'+'0'+'4'+';'+'e'+'z'+'y'+'&'+'#'+'9'+'9'+';'+'h'+'a'+'m'+'p'+'s'+'&'+'#'+'6'+'4'+';'+'t'+'&'+'#'+'1'+'0'+'1'+';'+'&'+'#'+'9'+'7'+';'+'m'+'&'+'#'+'5'+'0'+';'+'&'+'#'+'5'+'3'+';'+'4'+'&'+'#'+'4'+'6'+';'+'&'+'#'+'9'+'9'+';'+'o'+'m'+'<'+'/'+'a'+'>');</script><noscript>[Turn on JavaScript to see the email address]</noscript></i></div>
<!-- <div class="sponsor-row taller">
<div class="sponsor-column vexpro">
<div class="sponsor-logos">
<img src="files/vexpro.png" width="80%">
</div>
<p class="sponsor-blurb">The VEX Robotics Design System offers students an exciting platform for learning about areas rich with career opportunities spanning science, technology, engineering and math (STEM). These are just a few of the many fields students can explore by creating with VEX Robotics technology. Beyond science and engineering principles, a VEX Robotics project encourages teamwork, leadership and problem solving among groups. It also allows educators to easily.</p>
<div class="social-container">
<a href="http://www.vexrobotics.com/vexpro/"><div class="button-border">
VISIT SITE
<i class="fa fa-angle-right" ></i>
</div></a>
</div>
</div>
</div>
<div class="sponsor-divider"></div>
<style>
.sponsor-divider {
border: 1px solid rgb(238, 238, 238);
height: 1px;
margin: auto;
width: 90%;
}
</style>
<div class="sponsor-row taller">
<div class="sponsor-column vexpro">
<div class="sponsor-logos">
<img src="https://media.team254.com/2018/08/8f5707a6-advatek.jpg" width="100%">
</div>
<p class="sponsor-blurb">Advatek Lighting has a reputation for designing and manufacturing innovative lighting control products. Advatek builds the lights used on the field at Chezy Champs 2018.</p>
<div class="social-container">
<a href="https://www.advateklights.com/"><div class="button-border">
VISIT SITE
<i class="fa fa-angle-right" ></i>
</div></a>
</div>
</div>
</div>
</div>
<div class="sponsor-row" style="margin-bottom: 3%;">
<div class="sponsor-column for-sponsor-picture" style="background: #fff;">
<img src="files/sponsors/vexpro.png" width="60%" style="margin-top: 8%;">
</div>
<div class="sponsor-column" style="background: #fff;">
<p class="sponsor-title" style="margin-top: 12%;" >VEX PRO</p>
<p class="sponsor-blurb">VEX Pro produces battle-tested robotics components to allow any team to compete with the pros. VEX Pro has generously provided sponsorship for Chezy Champs since its inaugural year. Without them, this event would not be possible.</p>
<div class="social-container">
<a class="button" href="https://www.vexrobotics.com/vexpro">
VISIT SITE
<i class="fa fa-angle-right"></i>
</a>
</div>
</div>
</div>
<div class="sponsor-divider"></div>
<style>
.sponsor-divider {
border: 1px solid rgb(238, 238, 238);
height: 1px;
margin: auto;
width: 90%;
}
</style>
<div class="sponsor-row">
<div class="sponsor-column for-sponsor-picture" style="background: #fff;">
<img src="files/sponsors/Lockheed_Martin.svg" width="80%" style="margin-top: 15%;">
</div>
<div class="sponsor-column" style="background: #fff;">
<p class="sponsor-title" style="margin-top: 10%;">Lockheed Martin</p>
<p class="sponsor-blurb">Lockheed Martin is an American global aerospace, defense, security, and advanced technologies company with a strong presence in the Bay Area. Lockheed Martin has generously joined us as a sponsor of Chezy Champs 2019.</p>
<div class="social-container">
<a class="button" href="https://www.lockheedmartin.com" target="_blank">
VISIT SITE
<i class="fa fa-angle-right"></i>
</a>
</div>
</div>
</div>
</div> -->
<!-- <div class="placeholder" id="webcast"></div>
<div class="webcast">
<div class="webcast-header">WEBCAST</div>
<iframe id="stream" src="https://player.twitch.tv/?channel=robosportsnetwork&parent=chezychamps.com" frameborder="0" scrolling="no" height="auto" width="80%" style="margin-left: 10%; margin-top:50px"></iframe>
<script type="text/javascript">
$("#stream").height($("#stream").width()*9/16);
</script>
<div class="webcast-text">
Chezy Champs will be livestreamed on this page. Check back on October 30th and 31st to watch!
</div>
</div> -->
<div class="footer">
<div class="footer-links" style="margin: auto;">
<a href="https://www.facebook.com/team254robotics" class="footer-link-a" target="_blank"><span class="footer-link">FACEBOOK</span></a>
<a href="https://www.thebluealliance.com/event/2023cc" class="footer-link-a" target="_blank"><span class="footer-link">TBA</span></a>
<!-- <a href="https://www.twitch.tv/robosportsnetwork" class="footer-link-a" target="_blank"><span class="footer-link">TWITCH</span></a> -->
<a href="https://www.youtube.com/channel/UCKqzB6PVkWvtrGUWl0nv4gQ" class="footer-link-a" target="_blank"><span class="footer-link">YOUTUBE</span></a>
<a href="https://www.chiefdelphi.com/t/chezy-champs-2024/464621" class="footer-link-a" target="_blank"><span class="footer-link">CD</span></a>
<a href="http://www.team254.com" class="footer-link-a" target="_blank"><span class="footer-link">TEAM 254</span></a>
</div>
</div>
</div>
</body>
</html>