2022-05-26 22:09:31 -07:00
|
|
|
/*
|
2022-06-12 13:51:47 -07:00
|
|
|
Gilroy Hacks Website Source Code -> CSS (https://gilroyhacks.com)
|
2022-05-26 22:09:31 -07:00
|
|
|
|
2022-07-23 21:49:21 -07:00
|
|
|
Web-Designed by James Dinh ᓚᘏᗢ from scratch using HTML, CSS, and JS
|
2022-06-12 13:51:47 -07:00
|
|
|
For more info, contact jamesdinh77 (at) protonmail (dot) com
|
|
|
|
|
|
|
|
Copyright Disclaimer: This Source Code is Copyright (c) 2022 Gilroy Hacks All Rights Reserved.
|
2022-05-26 22:09:31 -07:00
|
|
|
*/
|
2022-06-03 22:42:48 -07:00
|
|
|
|
2022-05-26 22:09:31 -07:00
|
|
|
html {
|
2022-06-09 22:02:33 -07:00
|
|
|
scroll-behavior: smooth;
|
2022-05-26 22:09:31 -07:00
|
|
|
}
|
|
|
|
|
2022-05-30 00:43:44 -07:00
|
|
|
/* Nav */
|
2022-05-26 22:09:31 -07:00
|
|
|
* {
|
2022-06-09 22:02:33 -07:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
2022-05-26 22:09:31 -07:00
|
|
|
}
|
|
|
|
|
2023-01-08 22:44:43 -08:00
|
|
|
.nav-container {
|
|
|
|
box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* menu */
|
|
|
|
|
|
|
|
.nav-container .nav-menu {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
overflow: hidden;
|
|
|
|
clear: none;
|
|
|
|
float: right;
|
|
|
|
max-height: none;
|
|
|
|
margin-right: 110px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-container .nav-menu li {
|
|
|
|
display: inline-block;
|
|
|
|
line-height: 30px;
|
|
|
|
margin: 10px 7px;
|
|
|
|
padding: 3px 11px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* menu icon */
|
|
|
|
|
|
|
|
.nav-container .menu-icon {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-container .menu-icon .navicon {
|
|
|
|
background: rgb(123, 123, 123);
|
|
|
|
display: block;
|
|
|
|
height: 2px;
|
|
|
|
position: relative;
|
|
|
|
transition: background .2s ease-out;
|
|
|
|
width: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-container .menu-icon .navicon:before,
|
|
|
|
.nav-container .menu-icon .navicon:after {
|
|
|
|
background: rgb(123, 123, 123);
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
height: 100%;
|
|
|
|
position: absolute;
|
|
|
|
transition: all .2s ease-out;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-container .menu-icon .navicon:before {
|
|
|
|
top: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-container .menu-icon .navicon:after {
|
|
|
|
top: -5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* menu btn */
|
|
|
|
|
|
|
|
.nav-container .menu-btn {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-container .menu-btn:checked ~ .nav-menu {
|
|
|
|
max-height: 300px;
|
2023-01-15 01:16:08 -08:00
|
|
|
background-color: rgba(24, 24, 24, 0.988);
|
2023-01-09 02:14:54 -08:00
|
|
|
transition: 0.5s;
|
2023-01-08 22:44:43 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav-container .menu-btn:checked ~ .menu-icon .navicon {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-container .menu-btn:checked ~ .menu-icon .navicon:before {
|
|
|
|
transform: rotate(-45deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-container .menu-btn:checked ~ .menu-icon .navicon:after {
|
|
|
|
transform: rotate(45deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-container .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
|
|
|
|
.nav-container .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes slow-fade {
|
|
|
|
0% {
|
|
|
|
background-color: rgb(24, 24, 24);
|
|
|
|
}
|
|
|
|
90% {
|
|
|
|
background-color: unset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-09 02:14:54 -08:00
|
|
|
@media (max-width: 1050px) {
|
2023-01-08 22:44:43 -08:00
|
|
|
.nav-container .nav-menu {
|
|
|
|
clear: both;
|
|
|
|
max-height: 0;
|
|
|
|
transition: max-height .2s ease-out;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
.nav-container .nav-menu li {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.nav-container .menu-icon {
|
|
|
|
cursor: pointer;
|
2023-01-22 01:50:31 -08:00
|
|
|
display: block;
|
2023-01-08 22:44:43 -08:00
|
|
|
float: right;
|
|
|
|
padding: 28px 20px;
|
|
|
|
position: relative;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
#sign-up {
|
|
|
|
right: 50px !important;
|
|
|
|
}
|
2023-01-15 01:16:08 -08:00
|
|
|
.nav-container .menu-btn:not(:checked) ~ .nav-menu {
|
|
|
|
animation: slow-fade 1s ease;
|
|
|
|
}
|
2023-01-08 22:44:43 -08:00
|
|
|
}
|
|
|
|
|
2022-05-27 20:37:36 -07:00
|
|
|
nav {
|
2022-06-12 13:51:47 -07:00
|
|
|
height: 59px;
|
2022-06-09 22:02:33 -07:00
|
|
|
width: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
position: fixed;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
z-index: 100;
|
2022-05-27 20:37:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nav * {
|
2022-06-09 22:02:33 -07:00
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
box-sizing: border-box;
|
|
|
|
z-index: 100;
|
|
|
|
text-decoration: none;
|
2022-05-27 20:37:36 -07:00
|
|
|
}
|
|
|
|
|
2022-05-29 22:39:53 -07:00
|
|
|
#nav-logo {
|
2022-06-09 22:02:33 -07:00
|
|
|
height: 50px;
|
|
|
|
width: 258px;
|
2022-07-11 00:43:25 -07:00
|
|
|
margin: 5px 0 0;
|
2022-06-09 16:55:46 -07:00
|
|
|
}
|
|
|
|
|
2022-07-11 00:43:25 -07:00
|
|
|
#nav-logo:hover {
|
|
|
|
transform: scale(1.01);
|
2022-06-14 17:21:44 -07:00
|
|
|
transition: 0.5s;
|
2022-07-11 00:43:25 -07:00
|
|
|
}
|
2022-06-14 17:21:44 -07:00
|
|
|
|
2022-05-29 22:39:53 -07:00
|
|
|
#nav-logo-a {
|
2022-06-09 22:02:33 -07:00
|
|
|
position: relative;
|
2022-07-11 00:43:25 -07:00
|
|
|
margin: 0;
|
|
|
|
margin-left: 10px;
|
2022-05-29 22:39:53 -07:00
|
|
|
}
|
|
|
|
|
2022-06-20 02:33:38 -07:00
|
|
|
.navlink {
|
2022-06-09 22:02:33 -07:00
|
|
|
color:rgb(233, 203, 104);
|
|
|
|
font-size: 18px;
|
|
|
|
text-decoration: none;
|
|
|
|
position: relative;
|
2022-05-27 20:37:36 -07:00
|
|
|
}
|
|
|
|
|
2022-06-20 02:33:38 -07:00
|
|
|
.navlink.active,a:hover {
|
2022-06-09 22:02:33 -07:00
|
|
|
color: rgba(233, 203, 104, 0.774);
|
|
|
|
transition: .5s;
|
2022-05-27 20:37:36 -07:00
|
|
|
}
|
|
|
|
|
2022-06-20 02:33:38 -07:00
|
|
|
.navlink::after {
|
2022-06-09 22:02:33 -07:00
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 0.1em;
|
|
|
|
background-color: hotpink;
|
|
|
|
opacity: 1;
|
|
|
|
transition: opacity 300ms, transform 300ms;
|
|
|
|
transform: scale(0);
|
|
|
|
transform-origin: center;
|
2022-05-29 14:13:10 -07:00
|
|
|
}
|
|
|
|
|
2022-06-20 02:33:38 -07:00
|
|
|
.navlink:hover::after,
|
|
|
|
.navlink:focus::after{
|
2022-06-09 22:02:33 -07:00
|
|
|
transform: scale(1);
|
2022-05-29 14:13:10 -07:00
|
|
|
}
|
|
|
|
|
2022-05-27 20:37:36 -07:00
|
|
|
.checkbtn {
|
2022-06-09 22:02:33 -07:00
|
|
|
font-size: 23px;
|
|
|
|
color: white;
|
|
|
|
float: right;
|
|
|
|
line-height: 59px;
|
|
|
|
margin-right: 20px;
|
|
|
|
cursor: pointer;
|
|
|
|
display: none;
|
2022-05-27 20:37:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#check {
|
2022-06-09 22:02:33 -07:00
|
|
|
display: none;
|
2022-05-27 20:37:36 -07:00
|
|
|
}
|
|
|
|
|
2022-05-29 22:39:53 -07:00
|
|
|
#nav-links-container {
|
2022-06-09 22:02:33 -07:00
|
|
|
display: flex;
|
2022-06-13 10:59:57 -07:00
|
|
|
width: auto;
|
2022-06-09 22:02:33 -07:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
height: 59px;
|
|
|
|
float: right;
|
|
|
|
flex-direction: row-reverse;
|
|
|
|
align-content: stretch;
|
2022-05-29 22:39:53 -07:00
|
|
|
}
|
|
|
|
|
2022-07-30 01:22:47 -07:00
|
|
|
#nav-icon {
|
|
|
|
margin: 0 0 0 5px;
|
|
|
|
}
|
|
|
|
|
2022-05-29 14:13:10 -07:00
|
|
|
#sign-up {
|
2022-06-09 22:02:33 -07:00
|
|
|
padding: 6px 7px;
|
|
|
|
margin: 14px 15px 14px 4px;
|
2023-01-08 22:44:43 -08:00
|
|
|
width: 72px;
|
2022-06-09 22:02:33 -07:00
|
|
|
border-radius: 5px;
|
|
|
|
font-size: 16px;
|
|
|
|
background-color: rgb(140, 42, 165);
|
|
|
|
color: bisque;
|
2023-01-08 22:44:43 -08:00
|
|
|
position: fixed;
|
|
|
|
display: inline-flex;
|
|
|
|
right: 10px;
|
2022-05-29 14:13:10 -07:00
|
|
|
}
|
2022-05-27 20:37:36 -07:00
|
|
|
|
2022-05-29 14:13:10 -07:00
|
|
|
#sign-up:hover {
|
2023-01-08 22:44:43 -08:00
|
|
|
transform: scale(1.03);
|
|
|
|
filter: brightness(1.05);
|
2022-06-09 22:02:33 -07:00
|
|
|
cursor: pointer;
|
|
|
|
transition: 0.5s;
|
2022-05-29 14:13:10 -07:00
|
|
|
}
|
2022-05-27 20:37:36 -07:00
|
|
|
|
2022-06-12 21:21:00 -07:00
|
|
|
#banner {
|
2022-06-27 12:50:52 -07:00
|
|
|
width: 70%;
|
|
|
|
position: absolute;
|
|
|
|
justify-content: center;
|
|
|
|
display: inline-flex;
|
|
|
|
top: 16px;
|
|
|
|
font-size: 20px;
|
|
|
|
margin: auto;
|
2022-06-30 17:29:09 -07:00
|
|
|
min-width: 310px;
|
2022-06-12 13:51:47 -07:00
|
|
|
}
|
|
|
|
|
2022-06-12 21:21:00 -07:00
|
|
|
#banner-text {
|
|
|
|
text-align: center;
|
2022-06-12 13:51:47 -07:00
|
|
|
}
|
2022-06-12 21:21:00 -07:00
|
|
|
|
2022-06-13 20:53:17 -07:00
|
|
|
#timer {
|
|
|
|
color: rgb(184, 184, 184);
|
2022-06-17 01:43:06 -07:00
|
|
|
animation: blinking 3s infinite;
|
|
|
|
background-color: rgb(57, 57, 57);
|
2022-06-23 01:54:08 -07:00
|
|
|
border-radius: 5px;
|
2022-06-17 01:43:06 -07:00
|
|
|
padding: 2px 5px;
|
2023-01-08 22:44:43 -08:00
|
|
|
margin-left: 5px;
|
2022-07-18 16:46:17 -07:00
|
|
|
position: relative;
|
2023-01-08 22:44:43 -08:00
|
|
|
width: fit-content
|
2022-07-18 16:46:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#timer::after {
|
2022-12-16 12:24:55 -08:00
|
|
|
content: 'Apr 15, 10am';
|
2022-07-18 16:46:17 -07:00
|
|
|
position: absolute;
|
|
|
|
text-align: center;
|
|
|
|
align-items: center;
|
|
|
|
top: 30px;
|
2022-12-20 18:55:26 -08:00
|
|
|
right: calc(100% / 2);
|
2022-07-19 12:02:58 -07:00
|
|
|
padding: 2px 7px;
|
2022-07-29 00:46:41 -07:00
|
|
|
width: max-content;
|
2022-07-18 16:46:17 -07:00
|
|
|
opacity: 1;
|
|
|
|
background-color: #222429;
|
|
|
|
border-radius: 10px;
|
|
|
|
transition: opacity 300ms, transform 300ms;
|
|
|
|
transform: scale(0);
|
|
|
|
transform-origin: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
#timer:hover::after,
|
|
|
|
#timer:focus::after{
|
|
|
|
transform: scale(1);
|
2022-06-17 01:43:06 -07:00
|
|
|
}
|
|
|
|
|
2022-08-15 21:47:11 -07:00
|
|
|
#winners {
|
|
|
|
text-align: center;
|
|
|
|
position: absolute;
|
|
|
|
top: 59px;
|
|
|
|
background-color: #2c9643;
|
|
|
|
width: 100%;
|
|
|
|
font-size: 20px;
|
2022-08-17 23:33:25 -07:00
|
|
|
padding: 3px 5px;
|
2022-08-15 21:47:11 -07:00
|
|
|
animation: fadeInAnimation ease 2s;
|
|
|
|
animation-iteration-count: 1;
|
|
|
|
animation-fill-mode: forwards;
|
|
|
|
}
|
|
|
|
|
2022-08-17 14:35:32 -07:00
|
|
|
#chart {
|
|
|
|
max-width: 650px;
|
|
|
|
margin: 35px auto;
|
|
|
|
}
|
|
|
|
|
2022-08-15 21:47:11 -07:00
|
|
|
#team-emphasis {
|
2022-08-17 00:28:20 -07:00
|
|
|
color:rgb(180, 213, 253);
|
2022-08-15 21:47:11 -07:00
|
|
|
}
|
|
|
|
|
2022-07-11 00:43:25 -07:00
|
|
|
.tooltip-nav {
|
|
|
|
text-decoration: none;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2022-06-20 02:33:38 -07:00
|
|
|
#timer-link {
|
|
|
|
color:rgb(252, 188, 93);
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
background: unset;
|
2023-01-09 02:14:54 -08:00
|
|
|
margin-right: 10px;
|
2022-06-20 02:33:38 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.link:hover {
|
|
|
|
color:rgba(252, 188, 93, 0.719);
|
|
|
|
}
|
|
|
|
|
2022-06-12 13:51:47 -07:00
|
|
|
@keyframes blinking {
|
|
|
|
0% {
|
2022-12-20 18:55:26 -08:00
|
|
|
filter: brightness(1);
|
2022-06-12 13:51:47 -07:00
|
|
|
}
|
|
|
|
50% {
|
2022-12-20 18:55:26 -08:00
|
|
|
filter: brightness(0.8);
|
2022-06-12 13:51:47 -07:00
|
|
|
}
|
|
|
|
100% {
|
2022-12-20 18:55:26 -08:00
|
|
|
filter: brightness(1);
|
2022-06-12 13:51:47 -07:00
|
|
|
}
|
|
|
|
}
|
2022-06-30 13:19:56 -07:00
|
|
|
|
2022-06-09 16:55:46 -07:00
|
|
|
@keyframes dropdown{
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
transform: translateY(-30px);
|
|
|
|
}
|
2022-06-11 00:58:06 -07:00
|
|
|
20% {
|
2022-06-09 16:55:46 -07:00
|
|
|
transform: translateY(0px);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2022-06-11 00:58:06 -07:00
|
|
|
40% {
|
2022-06-09 22:02:33 -07:00
|
|
|
transform: translateY(-7px);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: translateY(0px);
|
|
|
|
}
|
2022-06-07 14:46:42 -07:00
|
|
|
}
|
|
|
|
|
2022-05-30 00:43:44 -07:00
|
|
|
/* Responsive Functions */
|
2022-07-23 16:47:05 -07:00
|
|
|
@media (max-width: 1600px) {
|
2022-06-27 12:50:52 -07:00
|
|
|
#banner {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
}
|
2022-07-23 16:47:05 -07:00
|
|
|
@media (max-width: 1330px) {
|
|
|
|
#banner {
|
|
|
|
width: 30%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 1200px) {
|
2022-06-13 10:59:57 -07:00
|
|
|
#banner {
|
2023-01-09 02:14:54 -08:00
|
|
|
display: block;
|
|
|
|
top: 1px;
|
|
|
|
max-width: 200px;
|
|
|
|
min-width: 150px;
|
|
|
|
width: auto;
|
|
|
|
margin-left: 300px;
|
2022-06-09 22:02:33 -07:00
|
|
|
}
|
2023-01-09 02:14:54 -08:00
|
|
|
#timer-container {
|
|
|
|
display: block;
|
2022-06-09 22:02:33 -07:00
|
|
|
text-align: center;
|
|
|
|
}
|
2023-01-09 02:14:54 -08:00
|
|
|
#timer {
|
2022-06-09 22:02:33 -07:00
|
|
|
display: inline-block;
|
2023-01-09 02:14:54 -08:00
|
|
|
position: relative;
|
|
|
|
margin: 3px auto 0;
|
|
|
|
padding: 0px 5px;
|
2022-06-09 22:02:33 -07:00
|
|
|
}
|
2023-01-09 23:58:49 -08:00
|
|
|
#timer::after {
|
|
|
|
right: -15px;
|
|
|
|
}
|
2023-01-09 02:14:54 -08:00
|
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
2022-06-09 22:02:33 -07:00
|
|
|
#prize-logo, .podium-label {
|
|
|
|
transform: scale(0.9);
|
|
|
|
font-size: 16px !important;
|
|
|
|
}
|
|
|
|
#podium-label-1 {
|
|
|
|
margin-right: 1px !important;
|
|
|
|
}
|
|
|
|
#podium-label-2 {
|
|
|
|
margin-left: 1px !important;
|
|
|
|
}
|
2022-12-19 23:20:22 -08:00
|
|
|
#header-background {
|
2022-06-11 00:58:06 -07:00
|
|
|
background-position: unset !important;
|
|
|
|
background-size: unset !important;
|
2022-12-19 23:20:22 -08:00
|
|
|
}
|
2022-06-11 00:58:06 -07:00
|
|
|
#logo {
|
2022-10-19 11:09:30 -07:00
|
|
|
height: 180px !important;
|
|
|
|
width: 180px !important;
|
|
|
|
}
|
|
|
|
header .waviy {
|
|
|
|
font-size: 45px;
|
2022-06-11 00:58:06 -07:00
|
|
|
}
|
2023-01-08 22:44:43 -08:00
|
|
|
}
|
|
|
|
@media (max-width: 620px) {
|
2022-06-17 01:43:06 -07:00
|
|
|
#banner {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-06-01 16:09:19 -07:00
|
|
|
}
|
|
|
|
@media (max-width: 500px) {
|
2023-01-09 00:14:23 -08:00
|
|
|
#signup-article, #rules, #prizes, #team {
|
2022-06-01 16:09:19 -07:00
|
|
|
transform: scale(0.9);
|
|
|
|
}
|
2022-06-06 20:44:54 -07:00
|
|
|
section {
|
|
|
|
padding-top: 0 !important;
|
|
|
|
}
|
2022-05-29 22:39:53 -07:00
|
|
|
}
|
2022-06-01 14:37:46 -07:00
|
|
|
@media (max-width: 470px) {
|
2022-06-09 22:02:33 -07:00
|
|
|
#nav-logo {
|
2022-12-16 00:14:37 -08:00
|
|
|
content: url(/img/logo_mini.png);
|
|
|
|
height: 45px;
|
|
|
|
width: 45px;
|
|
|
|
margin: 7px 0 0 5px;
|
2022-06-09 22:02:33 -07:00
|
|
|
}
|
2022-05-31 19:23:28 -07:00
|
|
|
#logo {
|
2022-10-18 14:13:28 -07:00
|
|
|
height: 2300px;
|
|
|
|
width: 230px;
|
2022-06-09 22:02:33 -07:00
|
|
|
}
|
2023-01-09 02:14:54 -08:00
|
|
|
#prizes-container, #banner {
|
2022-06-09 22:02:33 -07:00
|
|
|
transform: scale(0.9);
|
|
|
|
}
|
2023-01-08 22:44:43 -08:00
|
|
|
#banner {
|
|
|
|
display: block;
|
|
|
|
margin-left: 75px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 400px) {
|
|
|
|
#nav-logo {
|
|
|
|
content: url(/img/logo_mini.png);
|
|
|
|
height: 45px;
|
|
|
|
width: 45px;
|
|
|
|
margin: 7px 0 0 5px;
|
|
|
|
}
|
|
|
|
#logo {
|
|
|
|
height: 2300px;
|
|
|
|
width: 230px;
|
|
|
|
}
|
|
|
|
#prizes-container {
|
|
|
|
transform: scale(0.9);
|
|
|
|
}
|
2023-01-09 02:14:54 -08:00
|
|
|
}
|
|
|
|
@media (max-width: 370px) {
|
2023-01-08 22:44:43 -08:00
|
|
|
#banner {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-06-09 22:02:33 -07:00
|
|
|
}
|
2022-06-18 11:50:21 -07:00
|
|
|
@media (max-height: 550px) {
|
2022-06-09 22:02:33 -07:00
|
|
|
#logo {
|
2022-06-17 01:43:06 -07:00
|
|
|
transform: scale(0.8);
|
2022-06-09 22:02:33 -07:00
|
|
|
}
|
|
|
|
#header-subtitle-date {
|
2022-06-18 11:50:21 -07:00
|
|
|
transform: translateY(-30px);
|
2022-06-17 01:43:06 -07:00
|
|
|
}
|
|
|
|
#spots-container {
|
2022-06-18 11:50:21 -07:00
|
|
|
transform: translateY(-30px);
|
2022-06-09 22:02:33 -07:00
|
|
|
}
|
2022-06-17 01:43:06 -07:00
|
|
|
#line-header {
|
2022-06-18 11:50:21 -07:00
|
|
|
transform: translateY(-30px);
|
2022-06-09 22:02:33 -07:00
|
|
|
}
|
|
|
|
#entrance-arrow {
|
|
|
|
visibility: hidden;
|
2022-05-31 19:23:28 -07:00
|
|
|
}
|
|
|
|
}
|
2022-06-18 11:50:21 -07:00
|
|
|
@media (max-height: 400px) {
|
|
|
|
#header {
|
|
|
|
transform: scale(0.7);
|
|
|
|
}
|
|
|
|
}
|
2022-05-30 13:55:20 -07:00
|
|
|
|
2022-05-29 22:39:53 -07:00
|
|
|
.blob {
|
2022-06-09 22:02:33 -07:00
|
|
|
background: black;
|
|
|
|
border-radius: 50%;
|
|
|
|
box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
|
|
|
|
margin: 10px 4px;
|
|
|
|
height: 10px;
|
|
|
|
width: 10px;
|
|
|
|
transform: scale(1);
|
|
|
|
animation: pulse-black 2s infinite;
|
|
|
|
position: relative;
|
|
|
|
}
|
2022-05-29 22:39:53 -07:00
|
|
|
|
|
|
|
.blob.green {
|
2022-06-09 22:02:33 -07:00
|
|
|
background: rgba(51, 217, 178, 1);
|
|
|
|
box-shadow: 0 0 0 0 rgba(51, 217, 178, 1);
|
|
|
|
animation: pulse-green 2s infinite;
|
|
|
|
}
|
2022-05-29 22:39:53 -07:00
|
|
|
|
2022-10-15 15:34:07 -07:00
|
|
|
.blob.gold {
|
|
|
|
background: rgb(254, 228, 84);
|
|
|
|
box-shadow: 0 0 0 0 rgba(254, 228, 84, 1);
|
|
|
|
animation: pulse-gold 2s infinite;
|
|
|
|
}
|
|
|
|
|
2022-05-29 22:39:53 -07:00
|
|
|
@keyframes pulse-green {
|
2022-06-09 22:02:33 -07:00
|
|
|
0% {
|
|
|
|
transform: scale(0.95);
|
|
|
|
box-shadow: 0 0 0 0 rgba(51, 217, 178, 0.7);
|
|
|
|
}
|
|
|
|
70% {
|
|
|
|
transform: scale(1);
|
|
|
|
box-shadow: 0 0 0 10px rgba(51, 217, 178, 0);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: scale(0.95);
|
|
|
|
box-shadow: 0 0 0 0 rgba(51, 217, 178, 0);
|
2022-05-29 22:39:53 -07:00
|
|
|
}
|
2022-06-09 22:02:33 -07:00
|
|
|
}
|
2022-05-29 22:39:53 -07:00
|
|
|
|
2022-10-15 15:34:07 -07:00
|
|
|
@keyframes pulse-gold {
|
|
|
|
0% {
|
|
|
|
transform: scale(0.95);
|
|
|
|
box-shadow: 0 0 0 0 rgba(254, 228, 84);
|
|
|
|
}
|
|
|
|
70% {
|
|
|
|
transform: scale(1);
|
|
|
|
box-shadow: 0 0 0 10px rgba(51, 217, 178, 0);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: scale(0.95);
|
|
|
|
box-shadow: 0 0 0 0 rgba(51, 217, 178, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-30 00:43:44 -07:00
|
|
|
/* Header */
|
2022-05-29 16:50:10 -07:00
|
|
|
#header-background {
|
2022-10-16 13:14:34 -07:00
|
|
|
background-image: url(/img/background.jpg);
|
2022-06-11 00:58:06 -07:00
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
2022-06-09 22:02:33 -07:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-attachment: fixed;
|
|
|
|
height: 100vh;
|
2022-05-29 16:50:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#header {
|
2022-06-09 22:02:33 -07:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2023-01-22 01:50:31 -08:00
|
|
|
text-align: center;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-container {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-logo-parent {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2022-05-29 16:50:10 -07:00
|
|
|
|
2022-06-09 22:02:33 -07:00
|
|
|
text-align: center;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
#logo {
|
2022-10-18 14:13:28 -07:00
|
|
|
height: 230px;
|
|
|
|
width: 230px;
|
2022-06-09 22:02:33 -07:00
|
|
|
animation: fadeInAnimation ease 3s;
|
|
|
|
animation-iteration-count: 1;
|
|
|
|
animation-fill-mode: forwards;
|
2022-05-29 16:50:10 -07:00
|
|
|
}
|
|
|
|
|
2022-10-18 14:13:28 -07:00
|
|
|
.waviy {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
font-size: 60px;
|
|
|
|
}
|
|
|
|
.waviy span {
|
|
|
|
font-family: "Norwester";
|
|
|
|
font-weight: lighter;
|
|
|
|
margin: 0 1.4px;
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
left: 0%;
|
2022-11-29 21:18:42 -08:00
|
|
|
|
2022-10-18 14:13:28 -07:00
|
|
|
animation: waviy 1s;
|
|
|
|
animation-delay: calc(var(--i));
|
2022-11-29 21:18:42 -08:00
|
|
|
animation-fill-mode: both;
|
2022-10-18 14:13:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.waviy span:hover {
|
|
|
|
padding-left: -20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#top-logo-text {
|
|
|
|
color: #7ed957;
|
|
|
|
}
|
|
|
|
|
|
|
|
#bottom-logo-text {
|
|
|
|
color: #008037;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes waviy {
|
|
|
|
0% {
|
|
|
|
transform: translateY(-100px);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
10% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
30% {
|
|
|
|
transform: translateY(0px);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
transform: translateY(-10px);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: translateY(0px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-29 16:50:10 -07:00
|
|
|
#header-subtitle-date {
|
2023-01-12 14:24:43 -08:00
|
|
|
padding: 5px 7px;
|
2022-06-09 22:02:33 -07:00
|
|
|
margin-top: 5px;
|
|
|
|
border-radius: 10px;
|
|
|
|
display: flex;
|
2023-01-12 14:24:43 -08:00
|
|
|
width: fit-content;
|
2022-06-09 22:02:33 -07:00
|
|
|
place-items: center;
|
|
|
|
border: 1px solid rgb(73, 73, 73);
|
|
|
|
background-color: rgb(22, 22, 22);
|
|
|
|
animation: slidein ease 1.5s;
|
2022-06-02 17:35:28 -07:00
|
|
|
}
|
|
|
|
|
2022-07-23 22:19:23 -07:00
|
|
|
.header-link {
|
|
|
|
background: unset !important;
|
|
|
|
color: white !important;
|
2023-02-09 20:53:16 -08:00
|
|
|
text-decoration: none;
|
2022-07-23 22:19:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#header-tooltip::after {
|
|
|
|
content: '← Add to Calendar';
|
|
|
|
top: 12px;
|
|
|
|
right: -160px;
|
|
|
|
transform-origin: left;
|
|
|
|
color: rgb(252, 188, 93);
|
|
|
|
}
|
|
|
|
|
|
|
|
#spots-tooltip::after {
|
2023-02-09 20:53:16 -08:00
|
|
|
content: '← Sign up here';
|
2022-07-23 22:19:23 -07:00
|
|
|
top: 12px;
|
2022-08-10 23:58:53 -07:00
|
|
|
right: -150px;
|
2022-07-23 22:19:23 -07:00
|
|
|
transform-origin: left;
|
2022-08-10 23:58:53 -07:00
|
|
|
color: rgb(252, 93, 93);
|
2022-07-23 22:19:23 -07:00
|
|
|
}
|
|
|
|
|
2023-01-22 01:50:31 -08:00
|
|
|
.header-info-container {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
|
|
|
align-items: flex-start;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2022-07-23 22:19:23 -07:00
|
|
|
@media (max-width: 610px) {
|
|
|
|
#header-tooltip::after, #spots-tooltip::after {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-icon {
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
|
2022-06-02 17:35:28 -07:00
|
|
|
#spots-container {
|
|
|
|
display: flex;
|
|
|
|
place-items: center;
|
|
|
|
border-radius: 10px;
|
|
|
|
margin-top: 5px;
|
|
|
|
padding: 0 7px;
|
2023-01-12 14:24:43 -08:00
|
|
|
width: fit-content;
|
2022-06-02 17:35:28 -07:00
|
|
|
border: 1px solid rgb(73, 73, 73);
|
|
|
|
background-color: rgb(22, 22, 22);
|
|
|
|
animation: slidein-2 ease 3s;
|
2022-05-29 16:50:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#header-subtitle-spots {
|
2022-06-09 22:02:33 -07:00
|
|
|
padding: 5px;
|
2022-05-29 16:50:10 -07:00
|
|
|
}
|
|
|
|
|
2022-06-12 13:51:47 -07:00
|
|
|
#spots-container:hover, #header-subtitle-date:hover {
|
|
|
|
transform: translateY(-2px);
|
|
|
|
transition: 0.5s;
|
|
|
|
}
|
|
|
|
|
2022-05-29 16:50:10 -07:00
|
|
|
#entrance-arrow {
|
2022-06-09 22:02:33 -07:00
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 10px;
|
|
|
|
float: bottom;
|
|
|
|
animation: bounce 3s infinite;
|
2022-05-29 16:50:10 -07:00
|
|
|
}
|
|
|
|
|
2022-05-30 13:55:20 -07:00
|
|
|
#entrance-arrow:hover {
|
2022-06-09 22:02:33 -07:00
|
|
|
font-size: 17px;
|
|
|
|
transition: 0.1s;
|
2022-05-30 13:55:20 -07:00
|
|
|
}
|
|
|
|
|
2022-06-18 11:50:21 -07:00
|
|
|
#header-gradient {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-image: linear-gradient(#0d111733 50%, #0d11175e 60%, #0d1117 100%);
|
|
|
|
}
|
|
|
|
|
2023-01-12 21:35:58 -08:00
|
|
|
.header-parent {
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
}
|
|
|
|
|
2022-05-29 16:50:10 -07:00
|
|
|
@keyframes bounce {
|
2022-06-09 22:02:33 -07:00
|
|
|
0%, 20%, 50%, 80%, 100% {
|
|
|
|
transform: translateY(0);
|
|
|
|
}
|
|
|
|
40% {
|
|
|
|
transform: translateY(-5px);
|
|
|
|
}
|
|
|
|
60% {
|
|
|
|
transform: translateY(-3px);
|
|
|
|
}
|
2022-06-02 17:35:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeInAnimation {
|
|
|
|
0% {
|
2022-06-09 22:02:33 -07:00
|
|
|
opacity: 0;
|
2022-06-02 17:35:28 -07:00
|
|
|
}
|
|
|
|
100% {
|
2022-06-09 22:02:33 -07:00
|
|
|
opacity: 1;
|
2022-06-02 17:35:28 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
@keyframes slidein {
|
|
|
|
0% {
|
|
|
|
transform: translateY(250px);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
60% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: translateY(0px);
|
2022-06-03 01:42:59 -07:00
|
|
|
opacity: 1;
|
2022-06-02 17:35:28 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
@keyframes slidein-2 {
|
|
|
|
0% {
|
|
|
|
transform: translateY(1000px);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
80% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: translateY(0px);
|
2022-06-03 01:42:59 -07:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@keyframes slidein-side {
|
|
|
|
0% {
|
|
|
|
transform: translateX(-100px);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
40% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: translateX(0px);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
2022-06-03 15:38:07 -07:00
|
|
|
@keyframes slidein-prize-2 {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
40% {
|
2022-06-06 20:44:54 -07:00
|
|
|
transform: translateX(-30px);
|
2022-06-03 15:38:07 -07:00
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: translateX(0px);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@keyframes slidein-prize-1 {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
2022-06-06 20:44:54 -07:00
|
|
|
30% {
|
|
|
|
transform: translateY(-30px);
|
2022-06-03 15:38:07 -07:00
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: translateY(0px);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@keyframes slidein-prize-3 {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
60% {
|
2022-06-06 20:44:54 -07:00
|
|
|
transform: translateX(30px);
|
2022-06-03 15:38:07 -07:00
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: translateX(0px);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
2022-06-03 01:42:59 -07:00
|
|
|
|
2022-12-16 19:13:03 -08:00
|
|
|
@keyframes modal-fade-in {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-03 01:42:59 -07:00
|
|
|
@media (prefers-reduced-motion: no-preference) {
|
|
|
|
.slide-animation {
|
|
|
|
animation: slidein-side ease 1s;
|
2022-06-02 17:35:28 -07:00
|
|
|
}
|
2022-06-03 15:38:07 -07:00
|
|
|
.slide-animation-prize-2 {
|
|
|
|
animation: slidein-prize-2 ease 3s;
|
|
|
|
}
|
|
|
|
.slide-animation-prize-1 {
|
|
|
|
animation: slidein-prize-1 ease 2s;
|
|
|
|
}
|
|
|
|
.slide-animation-prize-3 {
|
|
|
|
animation: slidein-prize-3 ease 3s;
|
|
|
|
}
|
2022-12-16 19:13:03 -08:00
|
|
|
.slide-animation-card-img {
|
|
|
|
animation: card-img-pullout ease 2s;
|
|
|
|
}
|
|
|
|
.slide-animation-card-desc {
|
|
|
|
animation: card-desc-pullout ease 2s;
|
|
|
|
}
|
|
|
|
.modal-animation {
|
|
|
|
animation: modal-fade-in ease 0.5s;
|
|
|
|
}
|
2022-06-03 15:38:07 -07:00
|
|
|
}
|
2022-05-30 13:55:20 -07:00
|
|
|
|
2022-05-30 00:43:44 -07:00
|
|
|
/* Main Section */
|
2022-05-29 16:50:10 -07:00
|
|
|
main {
|
2022-06-01 21:02:59 -07:00
|
|
|
width: 100%;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
text-align: center;
|
|
|
|
position: relative;
|
|
|
|
margin: auto;
|
|
|
|
display: grid;
|
2022-08-22 17:39:06 -07:00
|
|
|
padding-bottom: 70px;
|
2022-05-29 16:50:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
section {
|
2022-06-01 21:02:59 -07:00
|
|
|
width: auto;
|
2022-06-02 12:16:22 -07:00
|
|
|
padding-top: 70px;
|
2022-06-01 21:02:59 -07:00
|
|
|
text-align: center;
|
2022-06-01 23:56:29 -07:00
|
|
|
justify-content: center;
|
2022-06-01 21:02:59 -07:00
|
|
|
align-items: center;
|
|
|
|
max-width: 1500px;
|
2022-06-03 22:42:48 -07:00
|
|
|
min-width: 200px;
|
2022-05-29 16:50:10 -07:00
|
|
|
}
|
|
|
|
|
2022-05-30 00:43:44 -07:00
|
|
|
.topic {
|
2022-06-01 21:02:59 -07:00
|
|
|
width: auto;
|
|
|
|
font-size: 35px;
|
|
|
|
padding: 0 20px 0 20px;
|
|
|
|
color:rgb(255, 243, 205);
|
2022-05-30 00:43:44 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#event-container {
|
2022-06-01 21:02:59 -07:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-top: 20px;
|
|
|
|
justify-content: center;
|
2022-05-30 00:43:44 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#event-description {
|
2022-06-01 21:02:59 -07:00
|
|
|
margin: 0 20px;
|
|
|
|
max-width: 700px;
|
|
|
|
min-width: 200px;
|
|
|
|
font-size: 18px;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2022-12-17 00:23:37 -08:00
|
|
|
.description-heading {
|
2022-05-31 11:07:57 -07:00
|
|
|
text-align: center;
|
2022-12-17 00:23:37 -08:00
|
|
|
margin-bottom: 10px;
|
2022-05-31 11:07:57 -07:00
|
|
|
}
|
|
|
|
|
2022-06-04 19:02:18 -07:00
|
|
|
#description-content {
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 10px;
|
|
|
|
background-color: #202329;
|
2022-06-04 23:43:19 -07:00
|
|
|
padding: 15px 10px;
|
2022-06-04 19:02:18 -07:00
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
2022-07-17 22:55:34 -07:00
|
|
|
.desc-title {
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
|
2022-12-17 00:23:37 -08:00
|
|
|
/* Splash text */
|
|
|
|
.splash-container {
|
|
|
|
padding: 15px 20px;
|
|
|
|
border-radius: 10px;
|
|
|
|
border: 1px solid rgb(68, 68, 68);
|
2022-06-01 21:02:59 -07:00
|
|
|
margin: 10px 0;
|
2022-05-30 00:43:44 -07:00
|
|
|
}
|
|
|
|
|
2022-12-17 00:23:37 -08:00
|
|
|
.splash-group {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
justify-content: center;
|
2022-05-31 00:57:35 -07:00
|
|
|
}
|
|
|
|
|
2022-12-17 00:23:37 -08:00
|
|
|
#why-GilroyHacks {
|
2022-06-01 21:02:59 -07:00
|
|
|
width: 100%;
|
2022-12-17 00:23:37 -08:00
|
|
|
min-width: 300px;
|
|
|
|
max-width: 315px;
|
|
|
|
margin: 15px;
|
2022-06-07 01:40:29 -07:00
|
|
|
}
|
|
|
|
|
2022-12-17 00:23:37 -08:00
|
|
|
#who-GilroyHacks {
|
|
|
|
width: 100%;
|
|
|
|
min-width: 300px;
|
|
|
|
max-width: 315px;
|
|
|
|
margin: 15px;
|
2022-06-07 02:12:07 -07:00
|
|
|
}
|
|
|
|
|
2022-12-17 00:23:37 -08:00
|
|
|
.splash-title {
|
|
|
|
color:rgb(51, 235, 189);
|
|
|
|
margin-bottom: 10px;
|
2022-05-31 15:20:04 -07:00
|
|
|
}
|
2022-06-07 01:40:29 -07:00
|
|
|
|
2022-12-17 00:23:37 -08:00
|
|
|
.splash-desc {
|
|
|
|
line-height: 25px;
|
2022-05-31 15:20:04 -07:00
|
|
|
}
|
2022-05-31 00:57:35 -07:00
|
|
|
|
2022-12-20 01:48:23 -08:00
|
|
|
#headline-recap {
|
|
|
|
color: #fbc334;
|
|
|
|
}
|
|
|
|
|
2023-01-09 00:14:23 -08:00
|
|
|
.splide {
|
|
|
|
margin: 20px auto;
|
2022-05-31 15:20:04 -07:00
|
|
|
}
|
2022-12-19 23:20:22 -08:00
|
|
|
|
2023-01-09 00:14:23 -08:00
|
|
|
.slide-content {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
text-align: center;
|
|
|
|
max-width: fit-content;
|
2022-05-31 15:20:04 -07:00
|
|
|
}
|
2022-12-19 23:20:22 -08:00
|
|
|
|
2023-01-09 00:14:23 -08:00
|
|
|
.splide, .splide__track, .splide__list, .splide__slide, .slide-content, .slide-img {
|
|
|
|
border-radius: 5px;
|
2022-12-20 01:48:23 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.slide-caption {
|
2023-01-09 00:14:23 -08:00
|
|
|
position: relative;
|
|
|
|
bottom: 35px;
|
2022-12-20 01:48:23 -08:00
|
|
|
background-color: #232323b8;
|
|
|
|
padding: 2px 5px;
|
|
|
|
border-radius: 5px;
|
2022-06-07 18:03:01 -07:00
|
|
|
}
|
|
|
|
|
2023-01-09 00:14:23 -08:00
|
|
|
.slide-img {
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
2022-07-22 00:40:43 -07:00
|
|
|
}
|
|
|
|
|
2023-01-09 00:14:23 -08:00
|
|
|
.splide__slide, .splide__slide:focus, .splide.is-focus-in, .splide__pagination__page:focus-visible {
|
|
|
|
border: none !important;
|
|
|
|
outline: none !important;
|
2022-07-22 00:40:43 -07:00
|
|
|
}
|
|
|
|
|
2023-01-09 00:14:23 -08:00
|
|
|
li .splide__pagination__page.is-active {
|
|
|
|
background: #545454;
|
2022-12-20 01:27:58 -08:00
|
|
|
}
|
|
|
|
|
2022-12-17 00:23:37 -08:00
|
|
|
.list {
|
|
|
|
padding-left: 20px;
|
2022-07-22 00:40:43 -07:00
|
|
|
}
|
|
|
|
|
2022-12-17 00:23:37 -08:00
|
|
|
.desc-list {
|
|
|
|
margin-left: 25px;
|
2022-07-22 00:40:43 -07:00
|
|
|
}
|
|
|
|
|
2022-12-17 00:23:37 -08:00
|
|
|
.list li{
|
|
|
|
margin: 10px 0;
|
2022-07-22 00:40:43 -07:00
|
|
|
}
|
|
|
|
|
2022-07-25 18:22:26 -07:00
|
|
|
.tooltip.zoom-tooltip::after {
|
2022-07-26 16:58:27 -07:00
|
|
|
content: 'Zoom Link';
|
2022-07-22 00:40:43 -07:00
|
|
|
font-size: 16px;
|
|
|
|
top: 40px;
|
2022-07-26 16:58:27 -07:00
|
|
|
right: 12px;
|
|
|
|
color: rgb(45, 140, 255);
|
2022-07-22 00:40:43 -07:00
|
|
|
}
|
|
|
|
|
2022-08-07 23:55:09 -07:00
|
|
|
.tooltip.zoom-tooltip-link::after {
|
|
|
|
content: 'Zoom Link';
|
|
|
|
font-size: 16px;
|
|
|
|
top: 22px;
|
2022-08-09 00:20:44 -07:00
|
|
|
right: -22px;
|
2022-08-07 23:55:09 -07:00
|
|
|
color: rgb(45, 140, 255);
|
|
|
|
}
|
|
|
|
|
2022-07-22 09:28:39 -07:00
|
|
|
#submit-tooltip:after {
|
|
|
|
content: 'Submission Form';
|
|
|
|
right: -20px;
|
|
|
|
}
|
|
|
|
|
2022-07-23 16:47:05 -07:00
|
|
|
#git-tooltip::after {
|
|
|
|
content: 'Git';
|
|
|
|
color:#a6e2fa;
|
|
|
|
right: -3px;
|
|
|
|
top: 33px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#html-tooltip::after {
|
|
|
|
content: 'HTML';
|
|
|
|
color:#a6e2fa;
|
|
|
|
right: -10px;
|
|
|
|
top: 33px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#python-tooltip::after {
|
|
|
|
content: 'Python';
|
|
|
|
color:#a6e2fa;
|
|
|
|
right: -15px;
|
|
|
|
top: 33px;
|
|
|
|
}
|
|
|
|
|
2022-05-31 18:02:11 -07:00
|
|
|
/* Signup Container */
|
2022-07-25 18:38:24 -07:00
|
|
|
.signup-container {
|
2022-05-31 18:02:11 -07:00
|
|
|
margin: 20px auto;
|
|
|
|
}
|
|
|
|
|
2022-06-01 00:54:16 -07:00
|
|
|
#steps-card {
|
|
|
|
width: 400px;
|
|
|
|
min-width: 300px;
|
|
|
|
border-radius: 10px;
|
2022-06-02 23:19:56 -07:00
|
|
|
background-color: #181a1d;
|
2022-06-01 00:54:16 -07:00
|
|
|
margin: 10px auto;
|
|
|
|
padding: 10px 30px;
|
2022-06-02 23:19:56 -07:00
|
|
|
box-shadow: 0px 5px 10px rgb(0 0 0 / 20%);
|
2022-06-01 00:54:16 -07:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2022-06-03 15:09:59 -07:00
|
|
|
/* Outer Layer with the steps border */
|
|
|
|
.outer {
|
|
|
|
border-left: 2px solid #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Card container */
|
|
|
|
.card {
|
|
|
|
position: relative;
|
|
|
|
margin: 0 0 20px 20px;
|
|
|
|
padding: 10px;
|
|
|
|
background: rgb(49, 48, 48);
|
|
|
|
color: gray;
|
|
|
|
border-radius: 8px;
|
|
|
|
max-width: 400px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card:hover {
|
|
|
|
filter: brightness(120%);
|
|
|
|
transition: 0.5s;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Title of the card */
|
|
|
|
.title {
|
|
|
|
color: rgb(255, 255, 255);
|
|
|
|
position: relative;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
2022-06-07 01:40:29 -07:00
|
|
|
.step-desc {
|
|
|
|
color: gray;
|
|
|
|
width: 298px;
|
|
|
|
}
|
|
|
|
|
2022-06-03 15:09:59 -07:00
|
|
|
/* Steps dot */
|
|
|
|
.title::before {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
background: rgb(49, 48, 48);
|
|
|
|
border-radius: 50%;
|
|
|
|
margin-top: 3px;
|
|
|
|
left: -38px;
|
|
|
|
border: 2px solid rgb(255, 255, 255);
|
|
|
|
}
|
|
|
|
|
|
|
|
.caption {
|
2022-06-03 15:12:51 -07:00
|
|
|
color: #8d8d8d;
|
2022-06-03 15:09:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Signup Checklist */
|
2022-07-25 18:38:24 -07:00
|
|
|
.checklist {
|
2022-06-03 15:09:59 -07:00
|
|
|
--text: #414856;
|
|
|
|
--check: #00ff37;
|
|
|
|
--disabled: #C3C8DE;
|
|
|
|
--border-radius: 10px;
|
|
|
|
background: var(--background);
|
|
|
|
position: relative;
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 0px auto;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2022-07-25 18:38:24 -07:00
|
|
|
.checklist label {
|
2022-06-03 15:09:59 -07:00
|
|
|
color: var(--text);
|
|
|
|
position: relative;
|
|
|
|
cursor: pointer;
|
|
|
|
display: grid;
|
|
|
|
align-items: center;
|
|
|
|
width: fit-content;
|
|
|
|
transition: color 0.3s ease;
|
|
|
|
}
|
2022-07-25 18:38:24 -07:00
|
|
|
.checklist label::before, .checklist label::after {
|
2022-06-03 15:09:59 -07:00
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
}
|
2022-07-25 18:38:24 -07:00
|
|
|
.checklist label::before {
|
2022-06-03 15:09:59 -07:00
|
|
|
height: 2px;
|
|
|
|
width: 8px;
|
|
|
|
left: -35px;
|
|
|
|
border-radius: 2px;
|
|
|
|
}
|
2022-07-25 18:38:24 -07:00
|
|
|
.checklist label:after {
|
2022-06-03 15:09:59 -07:00
|
|
|
height: 4px;
|
|
|
|
width: 4px;
|
|
|
|
top: 8px;
|
|
|
|
left: -35px;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
2022-07-25 18:38:24 -07:00
|
|
|
.checklist input[type=checkbox] {
|
2022-06-03 15:09:59 -07:00
|
|
|
appearance: none;
|
|
|
|
position: relative;
|
|
|
|
height: 15px;
|
|
|
|
width: 15px;
|
|
|
|
outline: none;
|
|
|
|
border: 0;
|
|
|
|
margin: 0 15px 0 0;
|
|
|
|
cursor: pointer;
|
|
|
|
background: var(--background);
|
|
|
|
display: grid;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2022-07-25 18:38:24 -07:00
|
|
|
.checklist input[type=checkbox]::before, .checklist input[type=checkbox]::after {
|
2022-06-03 15:09:59 -07:00
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
height: 2px;
|
|
|
|
top: auto;
|
|
|
|
background: var(--check);
|
|
|
|
border-radius: 2px;
|
|
|
|
}
|
2022-07-25 18:38:24 -07:00
|
|
|
.checklist input[type=checkbox]::before {
|
2022-06-03 15:09:59 -07:00
|
|
|
width: 0px;
|
|
|
|
transform-origin: right bottom;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
2022-07-25 18:38:24 -07:00
|
|
|
.checklist input[type=checkbox]::after {
|
2022-06-03 15:09:59 -07:00
|
|
|
width: 0px;
|
|
|
|
transform-origin: left bottom;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
2022-07-25 18:38:24 -07:00
|
|
|
.checklist input[type=checkbox]:checked::before {
|
2022-06-03 15:09:59 -07:00
|
|
|
animation: check-01 0.4s ease forwards;
|
|
|
|
left: -36px;
|
|
|
|
}
|
2022-07-25 18:38:24 -07:00
|
|
|
.checklist input[type=checkbox]:checked::after {
|
2022-06-03 15:09:59 -07:00
|
|
|
animation: check-02 0.4s ease forwards;
|
2022-06-04 19:02:18 -07:00
|
|
|
left: -31px;
|
2022-06-03 15:09:59 -07:00
|
|
|
}
|
2022-07-25 18:38:24 -07:00
|
|
|
.checklist input[type=checkbox]:checked + label {
|
2022-06-03 15:09:59 -07:00
|
|
|
color: var(--disabled);
|
|
|
|
animation: move 0.3s ease 0.1s forwards;
|
|
|
|
}
|
2022-07-25 18:38:24 -07:00
|
|
|
.checklist input[type=checkbox]:checked + label::before {
|
2022-06-03 15:09:59 -07:00
|
|
|
background: var(--disabled);
|
|
|
|
animation: slice 0.4s ease forwards;
|
|
|
|
}
|
2022-07-25 18:38:24 -07:00
|
|
|
.checklist input[type=checkbox]:checked + label::after {
|
2022-06-03 15:09:59 -07:00
|
|
|
animation: firework 0.5s ease forwards 0.1s;
|
|
|
|
left: -33px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes move {
|
|
|
|
50% {
|
|
|
|
padding-left: 8px;
|
|
|
|
padding-right: 0px;
|
2022-05-31 18:02:11 -07:00
|
|
|
}
|
2022-06-03 15:09:59 -07:00
|
|
|
100% {
|
|
|
|
padding-right: 4px;
|
2022-05-31 18:02:11 -07:00
|
|
|
}
|
2022-06-03 15:09:59 -07:00
|
|
|
}
|
|
|
|
@keyframes slice {
|
|
|
|
60% {
|
|
|
|
width: 100%;
|
|
|
|
left: 4px;
|
2022-06-02 23:19:56 -07:00
|
|
|
}
|
2022-06-03 15:09:59 -07:00
|
|
|
100% {
|
|
|
|
width: 100%;
|
|
|
|
left: -2px;
|
|
|
|
padding-left: 0;
|
2022-06-01 00:54:16 -07:00
|
|
|
}
|
2022-06-03 15:09:59 -07:00
|
|
|
}
|
|
|
|
@keyframes check-01 {
|
|
|
|
0% {
|
|
|
|
width: 4px;
|
|
|
|
top: auto;
|
|
|
|
transform: rotate(0);
|
2022-05-31 18:02:11 -07:00
|
|
|
}
|
2022-06-03 15:09:59 -07:00
|
|
|
50% {
|
|
|
|
width: 0px;
|
|
|
|
top: auto;
|
|
|
|
transform: rotate(0);
|
|
|
|
}
|
|
|
|
51% {
|
|
|
|
width: 0px;
|
|
|
|
top: 8px;
|
|
|
|
transform: rotate(45deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
width: 5px;
|
|
|
|
top: 8px;
|
|
|
|
transform: rotate(45deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@keyframes check-02 {
|
|
|
|
0% {
|
|
|
|
width: 4px;
|
|
|
|
top: auto;
|
|
|
|
transform: rotate(0);
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
width: 0px;
|
|
|
|
top: auto;
|
|
|
|
transform: rotate(0);
|
|
|
|
}
|
|
|
|
51% {
|
|
|
|
width: 0px;
|
|
|
|
top: 8px;
|
|
|
|
transform: rotate(-45deg);
|
|
|
|
}
|
|
|
|
100% {
|
2022-05-31 18:02:11 -07:00
|
|
|
width: 10px;
|
2022-06-03 15:09:59 -07:00
|
|
|
top: 8px;
|
|
|
|
transform: rotate(-45deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@keyframes firework {
|
|
|
|
0% {
|
|
|
|
opacity: 1;
|
|
|
|
box-shadow: 0 0 0 -2px #4f29f0, 0 0 0 -2px #4f29f0, 0 0 0 -2px #4f29f0, 0 0 0 -2px #4f29f0, 0 0 0 -2px #4f29f0, 0 0 0 -2px #4f29f0;
|
|
|
|
}
|
|
|
|
30% {
|
|
|
|
opacity: 1;
|
2022-05-31 18:02:11 -07:00
|
|
|
}
|
2022-06-03 15:09:59 -07:00
|
|
|
100% {
|
|
|
|
opacity: 0;
|
|
|
|
box-shadow: 0 -15px 0 0px #4f29f0, 14px -8px 0 0px #4f29f0, 14px 8px 0 0px #4f29f0, 0 15px 0 0px #4f29f0, -14px 8px 0 0px #4f29f0, -14px -8px 0 0px #4f29f0;
|
|
|
|
}
|
|
|
|
}
|
2022-05-31 18:02:11 -07:00
|
|
|
|
2022-08-29 18:25:10 -07:00
|
|
|
.apexcharts-menu {
|
|
|
|
background-color: #27293d!important;
|
|
|
|
border: 0px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.apexcharts-menu-item:hover {
|
|
|
|
background-color: #3f3f3f!important;
|
2022-08-17 21:39:32 -07:00
|
|
|
}
|
|
|
|
|
2022-07-18 16:46:17 -07:00
|
|
|
.tooltip {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tooltip::after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
text-align: center;
|
|
|
|
align-items: center;
|
|
|
|
top: 22px;
|
|
|
|
right: -35px;
|
|
|
|
padding: 3px 7px;
|
|
|
|
width: max-content;
|
|
|
|
opacity: 1;
|
|
|
|
z-index: 1;
|
|
|
|
background-color: #222429;
|
|
|
|
border-radius: 10px;
|
|
|
|
transition: opacity 300ms, transform 300ms;
|
|
|
|
transform: scale(0);
|
|
|
|
transform-origin: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tooltip:hover::after {
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#signup-link::after {
|
|
|
|
content: 'Signup Form';
|
|
|
|
}
|
|
|
|
|
|
|
|
.email-link::after {
|
|
|
|
content: 'Email';
|
2022-07-19 13:14:06 -07:00
|
|
|
right: calc((100%/2) - 25px);
|
2022-07-18 16:46:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#discord-link::after {
|
|
|
|
content: 'Discord Invite Link';
|
2022-07-19 13:14:06 -07:00
|
|
|
right: -40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#website::after {
|
|
|
|
content: 'Check out my website!';
|
|
|
|
top: 100px;
|
|
|
|
color: rgb(255, 208, 137)
|
|
|
|
}
|
|
|
|
|
2022-07-25 18:38:24 -07:00
|
|
|
.tooltip.discord::after {
|
2022-07-19 13:14:06 -07:00
|
|
|
content: 'Discord';
|
|
|
|
color: rgb(128, 130, 245);
|
|
|
|
right: -70px;
|
|
|
|
top: -5px;
|
|
|
|
transform-origin: left;
|
2022-07-18 16:46:17 -07:00
|
|
|
}
|
|
|
|
|
2022-07-21 18:27:04 -07:00
|
|
|
#facebook::after {
|
|
|
|
content: 'Facebook';
|
|
|
|
right: -34px;
|
|
|
|
color: rgb(255, 208, 137)
|
|
|
|
}
|
|
|
|
|
|
|
|
#instagram::after {
|
|
|
|
content: 'Instagram';
|
|
|
|
right: -35px;
|
|
|
|
color: rgb(255, 208, 137)
|
|
|
|
}
|
|
|
|
|
2022-07-27 13:55:59 -07:00
|
|
|
#youtube::after {
|
|
|
|
content: 'Youtube';
|
|
|
|
right: -25px;
|
|
|
|
color: rgb(255, 208, 137)
|
|
|
|
}
|
|
|
|
|
2022-06-04 19:02:18 -07:00
|
|
|
#sponsor-heading {
|
|
|
|
margin: 30px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sponsor-container {
|
|
|
|
display: flex;
|
2022-07-01 20:59:47 -07:00
|
|
|
flex-flow: column nowrap;
|
2022-06-04 19:02:18 -07:00
|
|
|
padding: 20px 5px;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sponsor-container a:hover {
|
|
|
|
transform: scale(1.03);
|
|
|
|
}
|
|
|
|
|
2022-07-01 20:59:47 -07:00
|
|
|
#sponsor-container img {
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
|
2022-06-04 19:02:18 -07:00
|
|
|
#gilroy-library-logo {
|
|
|
|
height: 120px;
|
2022-07-01 20:59:47 -07:00
|
|
|
width: 352px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#gavilan-college-logo {
|
2022-07-17 22:55:34 -07:00
|
|
|
height: 102px;
|
2022-07-01 20:59:47 -07:00
|
|
|
width: 352px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#gear-club-logo {
|
2022-07-17 22:55:34 -07:00
|
|
|
height: 60px;
|
2022-07-01 20:59:47 -07:00
|
|
|
width: 352px;
|
2022-07-17 22:55:34 -07:00
|
|
|
margin-top: 50px !important;
|
2022-06-04 19:02:18 -07:00
|
|
|
}
|
|
|
|
|
2022-11-29 21:18:42 -08:00
|
|
|
/* Schedule */
|
2022-12-20 18:55:26 -08:00
|
|
|
#schedule {
|
2022-12-16 12:58:01 -08:00
|
|
|
padding-top: 70px;
|
2023-01-09 00:14:23 -08:00
|
|
|
margin-bottom: 30px;
|
2022-12-16 12:58:01 -08:00
|
|
|
}
|
|
|
|
|
2022-12-15 20:09:54 -08:00
|
|
|
.schedule-parent {
|
2022-11-29 21:18:42 -08:00
|
|
|
display: flex;
|
2022-12-15 20:09:54 -08:00
|
|
|
flex-flow: row wrap;
|
|
|
|
justify-content: center;
|
|
|
|
max-width: 1300px;
|
2022-12-16 00:14:37 -08:00
|
|
|
width: 95%;
|
2022-12-15 20:09:54 -08:00
|
|
|
margin: auto;
|
2022-11-29 21:18:42 -08:00
|
|
|
}
|
|
|
|
|
2022-12-15 20:09:54 -08:00
|
|
|
.schedule-element {
|
|
|
|
padding: 20px 20px;
|
2022-12-16 00:14:37 -08:00
|
|
|
margin-top: 20px;
|
|
|
|
width: 95%;
|
2022-12-20 18:55:26 -08:00
|
|
|
min-width: 370px;
|
2022-12-15 20:09:54 -08:00
|
|
|
max-width: 650px;
|
2022-12-16 00:14:37 -08:00
|
|
|
background-color: rgb(29, 27, 36);
|
|
|
|
border-radius: 10px;
|
2022-11-29 21:18:42 -08:00
|
|
|
}
|
|
|
|
|
2022-12-15 20:09:54 -08:00
|
|
|
.time-column-header {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
font-size: 30px;
|
|
|
|
text-decoration: underline;
|
2022-11-29 21:18:42 -08:00
|
|
|
}
|
|
|
|
|
2022-12-16 00:14:37 -08:00
|
|
|
.schedule-container {
|
|
|
|
display: grid;
|
|
|
|
margin: auto;
|
|
|
|
grid-gap: 0.2rem;
|
|
|
|
grid-template-columns: 4rem repeat(4, 1fr);
|
|
|
|
grid-template-rows: repeat(14, 1fr);
|
|
|
|
grid-template-areas: "time800 stage stage stage stage" "time900 stage stage stage stage" "time1000 stage stage stage stage" "time1100 stage stage stage stage" "time1200 stage stage stage stage" "time1300 stage stage stage stage" "time1400 stage stage stage stage" "time1500 stage stage stage stage" "time1600 stage stage stage stage" "time1700 stage stage stage stage" "time1800 stage stage stage stage" "time1900 stage stage stage stage" "time2000 stage stage stage stage" "time2100 stage stage stage stage";
|
|
|
|
}
|
|
|
|
|
2022-12-16 19:13:03 -08:00
|
|
|
.modal {
|
2022-12-17 00:23:37 -08:00
|
|
|
border: 1px solid rgb(142, 102, 177);
|
2022-12-16 19:13:03 -08:00
|
|
|
background-color: #23262a;
|
2022-12-20 18:55:26 -08:00
|
|
|
min-width: 350px;
|
|
|
|
max-width: 500px;
|
2022-12-16 19:13:03 -08:00
|
|
|
position: fixed;
|
|
|
|
margin: auto;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
display: none;
|
|
|
|
text-align: left;
|
|
|
|
border-radius: 5px;
|
|
|
|
overflow: hidden;
|
2022-12-16 19:23:58 -08:00
|
|
|
z-index: 2;
|
2022-12-16 19:13:03 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal-header {
|
|
|
|
background-color: rgb(147, 29, 141);
|
|
|
|
padding: 5px 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-desc {
|
|
|
|
padding: 8px 10px 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-close-modal {
|
|
|
|
display: block;
|
|
|
|
float: right;
|
|
|
|
background-color: unset;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
2023-01-15 01:16:08 -08:00
|
|
|
margin-right: 5px;
|
|
|
|
display: block;
|
|
|
|
height: 2px;
|
|
|
|
position: relative;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
padding: 15px 20px 10px 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-close-modal:before,
|
|
|
|
.button-close-modal:after {
|
|
|
|
background: rgb(200, 200, 200);
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
height: 2px;
|
|
|
|
position: absolute;
|
|
|
|
transition: all .2s ease-out;
|
|
|
|
width: 13px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-close-modal:hover {
|
|
|
|
transform: scale(1.2);
|
|
|
|
filter: brightness(1.1);
|
|
|
|
transition: 0.3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-close-modal:before {
|
|
|
|
transform: rotate(-45deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-close-modal:after {
|
|
|
|
transform: rotate(45deg);
|
2022-12-16 19:13:03 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
#modal-overlay {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: none;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
background-color: rgba(0, 0, 0, .5);
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity .2s ease;
|
|
|
|
}
|
|
|
|
|
2022-12-17 01:49:14 -08:00
|
|
|
.timeline-description {
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-description-list li {
|
|
|
|
margin: 10px 40px;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.important-text {
|
|
|
|
color: rgb(255, 126, 126);
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-links {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
justify-content: center;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none !important;
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-icon {
|
|
|
|
height: 23px;
|
|
|
|
width: 75px;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-button {
|
|
|
|
color: rgb(233, 203, 104);
|
|
|
|
text-decoration: none;
|
|
|
|
border-radius: 5px;
|
|
|
|
font-size: 18px;
|
|
|
|
border: 1px solid rgb(192, 168, 88);
|
|
|
|
padding: 5px;
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.zoom-link {
|
|
|
|
border: 1px solid rgb(45, 140, 255);
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-button.zoom-link:hover {
|
|
|
|
background-color: rgb(45, 140, 255);
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-button.zoom-link:hover > .timeline-icon{
|
|
|
|
filter:hue-rotate(60deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeline-button:hover {
|
|
|
|
color: white;
|
|
|
|
background-color: rgb(192, 168, 88);
|
|
|
|
transition: 0.5s;
|
|
|
|
}
|
|
|
|
|
2022-12-16 00:14:37 -08:00
|
|
|
/**
|
|
|
|
* Time
|
|
|
|
*/
|
|
|
|
.time {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
height: 100%;
|
|
|
|
padding: 0 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.time span {
|
|
|
|
position: relative;
|
|
|
|
bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.time.start-800 {
|
|
|
|
grid-area: time800;
|
|
|
|
}
|
|
|
|
.time.start-900 {
|
|
|
|
grid-area: time900;
|
|
|
|
}
|
|
|
|
.time.start-1000 {
|
|
|
|
grid-area: time1000;
|
|
|
|
}
|
|
|
|
.time.start-1100 {
|
|
|
|
grid-area: time1100;
|
|
|
|
}
|
|
|
|
.time.start-1200 {
|
|
|
|
grid-area: time1200;
|
|
|
|
}
|
|
|
|
.time.start-1300 {
|
|
|
|
grid-area: time1300;
|
|
|
|
}
|
|
|
|
.time.start-1400 {
|
|
|
|
grid-area: time1400;
|
|
|
|
}
|
|
|
|
.time.start-1500 {
|
|
|
|
grid-area: time1500;
|
|
|
|
}
|
|
|
|
.time.start-1600 {
|
|
|
|
grid-area: time1600;
|
|
|
|
}
|
|
|
|
.time.start-1700 {
|
|
|
|
grid-area: time1700;
|
|
|
|
}
|
|
|
|
.time.start-1800 {
|
|
|
|
grid-area: time1800;
|
|
|
|
}
|
|
|
|
.time.start-1900 {
|
|
|
|
grid-area: time1900;
|
|
|
|
}
|
|
|
|
.time.start-2000 {
|
|
|
|
grid-area: time2000;
|
|
|
|
}
|
|
|
|
.time.start-2100 {
|
|
|
|
grid-area: time2100;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Event
|
|
|
|
*/
|
|
|
|
.event {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
padding: 0.2rem 1rem;
|
|
|
|
background-color: rgb(157, 0, 149);
|
|
|
|
border-radius: 0.2rem;
|
|
|
|
font-size: 18px;
|
|
|
|
border-top: thin solid rgb(68, 68, 68);
|
2022-12-16 19:20:01 -08:00
|
|
|
cursor: pointer;
|
2023-01-12 14:24:43 -08:00
|
|
|
position: relative;
|
2022-12-16 00:14:37 -08:00
|
|
|
}
|
|
|
|
.event span {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
font-size: 14px;
|
|
|
|
color: rgb(177, 177, 177);
|
|
|
|
}
|
|
|
|
.event.empty {
|
|
|
|
background-color: unset;
|
2022-12-16 19:20:01 -08:00
|
|
|
cursor: unset;
|
2022-12-16 00:14:37 -08:00
|
|
|
}
|
|
|
|
|
2022-12-17 20:43:44 -08:00
|
|
|
.event:hover:not(.empty) {
|
|
|
|
filter: brightness(1.1);
|
|
|
|
transform: translateY(-2px);
|
|
|
|
transition: 0.3s;
|
|
|
|
}
|
|
|
|
|
2022-12-16 00:14:37 -08:00
|
|
|
.event.start-800 {
|
|
|
|
grid-row-start: time800;
|
|
|
|
}
|
|
|
|
.event.start-900 {
|
|
|
|
grid-row-start: time900;
|
|
|
|
}
|
|
|
|
.event.start-1000 {
|
|
|
|
grid-row-start: time1000;
|
|
|
|
}
|
|
|
|
.event.start-1100 {
|
|
|
|
grid-row-start: time1100;
|
|
|
|
}
|
|
|
|
.event.start-1200 {
|
|
|
|
grid-row-start: time1200;
|
|
|
|
}
|
|
|
|
.event.start-1300 {
|
|
|
|
grid-row-start: time1300;
|
|
|
|
}
|
|
|
|
.event.start-1400 {
|
|
|
|
grid-row-start: time1400;
|
|
|
|
}
|
|
|
|
.event.start-1500 {
|
|
|
|
grid-row-start: time1500;
|
|
|
|
}
|
|
|
|
.event.start-1600 {
|
|
|
|
grid-row-start: time1600;
|
|
|
|
}
|
|
|
|
.event.start-1700 {
|
|
|
|
grid-row-start: time1700;
|
|
|
|
}
|
|
|
|
.event.start-1800 {
|
|
|
|
grid-row-start: time1800;
|
|
|
|
}
|
|
|
|
.event.start-1900 {
|
|
|
|
grid-row-start: time1900;
|
|
|
|
}
|
|
|
|
.event.start-2000 {
|
|
|
|
grid-row-start: time2000;
|
|
|
|
}
|
|
|
|
.event.start-2100 {
|
|
|
|
grid-row-start: time2100;
|
|
|
|
}
|
|
|
|
.event.end-800 {
|
|
|
|
grid-row-end: time800;
|
|
|
|
}
|
|
|
|
.event.end-900 {
|
|
|
|
grid-row-end: time900;
|
|
|
|
}
|
|
|
|
.event.end-1000 {
|
|
|
|
grid-row-end: time1000;
|
|
|
|
}
|
|
|
|
.event.end-1100 {
|
|
|
|
grid-row-end: time1100;
|
|
|
|
}
|
|
|
|
.event.end-1200 {
|
|
|
|
grid-row-end: time1200;
|
|
|
|
}
|
|
|
|
.event.end-1300 {
|
|
|
|
grid-row-end: time1300;
|
|
|
|
}
|
|
|
|
.event.end-1400 {
|
|
|
|
grid-row-end: time1400;
|
|
|
|
}
|
|
|
|
.event.end-1500 {
|
|
|
|
grid-row-end: time1500;
|
|
|
|
}
|
|
|
|
.event.end-1600 {
|
|
|
|
grid-row-end: time1600;
|
|
|
|
}
|
|
|
|
.event.end-1700 {
|
|
|
|
grid-row-end: time1700;
|
|
|
|
}
|
|
|
|
.event.end-1800 {
|
|
|
|
grid-row-end: time1800;
|
|
|
|
}
|
|
|
|
.event.end-1900 {
|
|
|
|
grid-row-end: time1900;
|
|
|
|
}
|
|
|
|
.event.end-2000 {
|
|
|
|
grid-row-end: time2000;
|
|
|
|
}
|
|
|
|
.event.end-2100 {
|
|
|
|
grid-row-end: time2100;
|
|
|
|
}
|
|
|
|
.event.length-1 {
|
|
|
|
grid-column-end: span 1;
|
|
|
|
}
|
|
|
|
.event.length-2 {
|
|
|
|
grid-column-end: span 2;
|
|
|
|
}
|
|
|
|
.event.length-3 {
|
|
|
|
grid-column-end: span 3;
|
|
|
|
}
|
|
|
|
.event.length-4 {
|
|
|
|
grid-column-end: span 4;
|
|
|
|
}
|
|
|
|
.event.small {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
2022-12-16 19:13:03 -08:00
|
|
|
.logistics {
|
2022-12-16 00:14:37 -08:00
|
|
|
background-color: rgb(147, 29, 141);
|
|
|
|
}
|
2022-12-16 19:13:03 -08:00
|
|
|
.hacking {
|
2022-12-16 00:14:37 -08:00
|
|
|
background-color: rgb(53, 53, 199);
|
|
|
|
}
|
2022-12-16 19:13:03 -08:00
|
|
|
.food {
|
2022-12-16 00:14:37 -08:00
|
|
|
background-color: #03833b;
|
|
|
|
}
|
2022-12-16 19:13:03 -08:00
|
|
|
.workshop {
|
2022-12-16 00:14:37 -08:00
|
|
|
background-color: rgb(109, 40, 194);
|
|
|
|
}
|
2022-12-16 19:13:03 -08:00
|
|
|
.game {
|
2022-12-16 00:14:37 -08:00
|
|
|
background-color: rgb(105, 94, 139);
|
|
|
|
}
|
|
|
|
|
2022-12-20 00:43:48 -08:00
|
|
|
.logistics-border {
|
|
|
|
border: 1px solid rgb(147, 29, 141);
|
|
|
|
}
|
|
|
|
.hacking-border {
|
|
|
|
border: 1px solid rgb(53, 53, 199);
|
|
|
|
}
|
|
|
|
.food-border {
|
|
|
|
border: 1px solid #03833b;
|
|
|
|
}
|
|
|
|
.workshop-border {
|
|
|
|
border: 1px solid rgb(109, 40, 194);
|
|
|
|
}
|
|
|
|
.game-border {
|
|
|
|
border: 1px solid rgb(105, 94, 139);
|
|
|
|
}
|
|
|
|
|
2022-12-16 00:14:37 -08:00
|
|
|
|
2022-06-03 22:00:13 -07:00
|
|
|
#map-article {
|
2022-06-03 22:49:56 -07:00
|
|
|
margin: 20px auto 0;
|
|
|
|
width: 90%;
|
2022-06-09 16:55:46 -07:00
|
|
|
max-width: 1100px;
|
2022-06-03 22:00:13 -07:00
|
|
|
}
|
|
|
|
|
2022-06-16 16:39:15 -07:00
|
|
|
#cal-parent {
|
|
|
|
display: flex;
|
2022-06-16 17:00:52 -07:00
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: center;
|
2022-06-16 16:39:15 -07:00
|
|
|
}
|
|
|
|
|
2022-06-06 20:44:54 -07:00
|
|
|
#cal-container {
|
|
|
|
display: flex;
|
2022-06-16 16:39:15 -07:00
|
|
|
flex-direction: column;
|
2022-06-06 20:44:54 -07:00
|
|
|
flex-wrap: wrap;
|
2022-06-16 17:00:52 -07:00
|
|
|
width: 440px;
|
2022-06-16 16:39:15 -07:00
|
|
|
min-width: 400px !important;
|
2022-06-06 20:44:54 -07:00
|
|
|
height: auto;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cal-card {
|
2022-06-16 16:39:15 -07:00
|
|
|
width: 100%;
|
2022-06-06 20:44:54 -07:00
|
|
|
border-radius: 7px;
|
|
|
|
border: 1px solid white;
|
|
|
|
}
|
|
|
|
|
2022-06-11 00:58:06 -07:00
|
|
|
.cal-card:hover {
|
|
|
|
transform: translateY(-5px);
|
|
|
|
background-color: #0f1318;
|
|
|
|
transition: 0.5s;
|
|
|
|
}
|
|
|
|
|
2022-06-11 23:03:46 -07:00
|
|
|
/* .cal-card:hover > #community-room {
|
|
|
|
visibility: visible !important;
|
|
|
|
} */
|
|
|
|
|
2022-06-06 20:44:54 -07:00
|
|
|
#fri {
|
|
|
|
background-color: #18b14b65;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sat {
|
|
|
|
background-color: #cc1b1b65;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sun {
|
|
|
|
background-color: #cc83148a;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cal-entry {
|
|
|
|
display: flex;
|
|
|
|
align-content: stretch;
|
|
|
|
width: 100%;
|
2022-06-07 14:46:42 -07:00
|
|
|
height: 100%;
|
2022-06-06 20:44:54 -07:00
|
|
|
padding: 10px;
|
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.day-of-week {
|
|
|
|
font-size: 35px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cal-date {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
padding: 5px 10px;
|
|
|
|
width: 110px;
|
2022-06-07 14:46:42 -07:00
|
|
|
height: 75px;
|
2022-06-06 20:44:54 -07:00
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cal-subtitle {
|
2022-06-07 01:40:29 -07:00
|
|
|
color: rgb(150, 150, 150);
|
2022-06-06 20:44:54 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.cal-title {
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: underline;
|
2022-06-07 14:46:42 -07:00
|
|
|
margin-bottom: 10px;
|
2022-06-06 20:44:54 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.vertical-line {
|
|
|
|
width: 2px;
|
|
|
|
margin: 0 10px;
|
|
|
|
background-color: rgb(88, 88, 88);
|
|
|
|
}
|
|
|
|
|
|
|
|
.cal-desc {
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-list {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-06-07 14:46:42 -07:00
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-entry {
|
|
|
|
display: flex;
|
|
|
|
flex: row nowrap;
|
2022-06-16 16:39:15 -07:00
|
|
|
height: 30px;
|
2022-06-07 14:46:42 -07:00
|
|
|
margin-bottom: 7px;
|
|
|
|
}
|
|
|
|
|
2022-06-16 17:00:52 -07:00
|
|
|
@media (max-width: 487px) {
|
|
|
|
.event-entry {
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-07 14:46:42 -07:00
|
|
|
.time-column {
|
2022-06-16 16:39:15 -07:00
|
|
|
width: 35%;
|
2022-06-07 14:46:42 -07:00
|
|
|
height: 100%;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.event-column {
|
|
|
|
width: 75%;
|
|
|
|
height: 100%;
|
|
|
|
text-align: left;
|
|
|
|
padding-left: 15px;
|
2022-06-06 20:44:54 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.event-time {
|
2022-06-07 01:40:29 -07:00
|
|
|
color: gray;
|
2022-06-06 20:44:54 -07:00
|
|
|
}
|
|
|
|
|
2022-06-16 16:39:15 -07:00
|
|
|
.map-title {
|
2022-06-03 22:00:13 -07:00
|
|
|
font-size: 25px;
|
2022-06-16 17:00:52 -07:00
|
|
|
margin: 10px 0;
|
2022-06-03 22:00:13 -07:00
|
|
|
}
|
|
|
|
|
2022-06-16 16:39:15 -07:00
|
|
|
#map-div {
|
2022-06-16 17:00:52 -07:00
|
|
|
width: 660px;
|
2022-07-25 17:56:10 -07:00
|
|
|
height: 462px;
|
2022-06-16 16:39:15 -07:00
|
|
|
}
|
|
|
|
|
2022-06-06 20:44:54 -07:00
|
|
|
#map-container {
|
2022-06-03 22:00:13 -07:00
|
|
|
border-radius: 10px;
|
|
|
|
padding: 3px;
|
2022-06-16 16:39:15 -07:00
|
|
|
width: 100%;
|
2022-06-16 17:00:52 -07:00
|
|
|
height: 100%;
|
2022-06-03 22:00:13 -07:00
|
|
|
border: 1px solid white;
|
2022-06-11 23:03:46 -07:00
|
|
|
position: relative;
|
2022-07-04 23:22:07 -07:00
|
|
|
min-width: 375px;
|
2022-06-03 22:00:13 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#map {
|
2022-06-06 20:44:54 -07:00
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
border-radius: 10px;
|
2022-06-11 23:03:46 -07:00
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
2022-07-21 18:27:04 -07:00
|
|
|
|
2022-07-21 18:39:32 -07:00
|
|
|
display: flex;
|
2022-07-21 18:27:04 -07:00
|
|
|
align-items: center;
|
2022-07-21 18:39:32 -07:00
|
|
|
justify-content: center;
|
2022-07-21 18:27:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Workshops */
|
|
|
|
.flex-container {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
2022-07-22 00:40:43 -07:00
|
|
|
margin-top: 20px;
|
|
|
|
justify-content: center;
|
2022-07-23 16:47:05 -07:00
|
|
|
align-items: flex-start;
|
2022-07-23 18:24:23 -07:00
|
|
|
width: 90%;
|
2022-07-23 18:32:36 -07:00
|
|
|
margin: 20px auto 0;
|
2022-07-22 00:40:43 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.workshop-entry {
|
|
|
|
margin: 20px;
|
2022-07-23 16:47:05 -07:00
|
|
|
min-width: 350px;
|
|
|
|
max-width: 500px;
|
2022-07-22 00:40:43 -07:00
|
|
|
border-radius: 10px;
|
|
|
|
box-shadow: 5px 5px 10px rgb(0 0 0 / 20%);
|
|
|
|
text-align: left;
|
2022-07-23 00:51:50 -07:00
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2022-07-23 16:47:05 -07:00
|
|
|
.workshop-entry:hover {
|
|
|
|
transform: translateY(-4px);
|
|
|
|
transition: 0.5s;
|
|
|
|
}
|
|
|
|
|
|
|
|
#webdev-workshop {
|
|
|
|
background-image:
|
|
|
|
linear-gradient( rgba(255, 255, 255, 0.5), rgba(0, 0, 0, 0.5) ),
|
|
|
|
url(/img/webdev.jpg);
|
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-color: rgb(102, 85, 61);
|
|
|
|
background-blend-mode: multiply;
|
|
|
|
/* Photo by Tranmautritam: https://www.pexels.com/photo/information-sign-on-shelf-251225/ */
|
|
|
|
}
|
|
|
|
|
|
|
|
#python-workshop {
|
|
|
|
background-image:
|
|
|
|
linear-gradient( rgba(255, 255, 255, 0.5), rgba(0, 0, 0, 0.5) ),
|
|
|
|
url(/img/python_code.jpg);
|
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-color: rgb(53, 79, 110);
|
|
|
|
background-blend-mode: multiply;
|
|
|
|
/* Photo SRC: https://unsplash.com/photos/g5_rxRjvKmg?utm_source=unsplash&utm_medium=referral&utm_content=creditShareLink */
|
|
|
|
}
|
|
|
|
|
2022-07-23 00:51:50 -07:00
|
|
|
.workshop-header {
|
2022-07-23 16:47:05 -07:00
|
|
|
padding: 10px 30px 15px;
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: auto auto;
|
|
|
|
background-color: rgb(19, 29, 41);
|
|
|
|
}
|
|
|
|
|
|
|
|
.workshop-title {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-font-weight {
|
|
|
|
font-size: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.workshop-topics {
|
|
|
|
float: right;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row-reverse;
|
|
|
|
}
|
|
|
|
|
|
|
|
.workshop-img {
|
|
|
|
height: 30px;
|
|
|
|
width: 30px;
|
|
|
|
margin-left: 10px;
|
2022-07-23 00:51:50 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.workshop-desc {
|
2022-07-23 16:47:05 -07:00
|
|
|
padding: 10px 35px;
|
|
|
|
background-color: #1b1c20;
|
|
|
|
}
|
|
|
|
|
|
|
|
.workshop-date {
|
|
|
|
padding: 7px 20px;
|
|
|
|
text-align: center;
|
|
|
|
background-color: #3a3344;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
font-size: 20px;
|
2022-07-23 20:11:24 -07:00
|
|
|
align-items: center;
|
2022-07-23 16:47:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.workshop-date div {
|
|
|
|
margin: 0 10px;
|
|
|
|
}
|
|
|
|
|
2022-07-23 21:48:45 -07:00
|
|
|
.cal-tooltip::after {
|
|
|
|
content: 'Add to Calendar';
|
|
|
|
font-size: 16px;
|
|
|
|
top: 30px;
|
|
|
|
right: -20px;
|
|
|
|
}
|
|
|
|
|
2022-07-25 20:02:20 -07:00
|
|
|
.link.workshop-link {
|
2022-07-23 21:48:45 -07:00
|
|
|
background: unset;
|
|
|
|
}
|
|
|
|
|
2022-07-23 16:47:05 -07:00
|
|
|
.workshop-icon {
|
|
|
|
float: left;
|
2022-07-23 20:11:24 -07:00
|
|
|
margin-top: 2px;
|
2022-07-23 16:47:05 -07:00
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
2022-07-23 18:01:46 -07:00
|
|
|
.workshop-instructor {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
margin: 0 5px 0 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.instructor-img {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
2022-07-27 22:13:59 -07:00
|
|
|
border-radius: 50%;
|
2022-07-23 18:01:46 -07:00
|
|
|
border-radius: 50%;
|
|
|
|
border: 1px solid rgb(161, 161, 161);
|
|
|
|
}
|
|
|
|
|
2022-07-26 15:31:45 -07:00
|
|
|
.workshop-slides {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.workshop-topics-covered {
|
|
|
|
width: 50%;
|
|
|
|
min-width: 150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.workshop-presentation {
|
|
|
|
text-align: center;
|
|
|
|
justify-content: center;
|
|
|
|
float: right;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.slides-thumbnail {
|
|
|
|
padding: 10px 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.slides-thumbnail:hover {
|
|
|
|
transform: scale(1.05);
|
|
|
|
transition: 0.5s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.slides-element {
|
|
|
|
width: 100%;
|
2022-08-06 23:19:51 -07:00
|
|
|
height: 100%;
|
2022-07-26 15:31:45 -07:00
|
|
|
border-radius: 5px;
|
|
|
|
border: 1px solid rgb(102, 102, 102);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tooltip#python-slides-tooltip::after {
|
|
|
|
content: 'Intro to Python Programming';
|
|
|
|
color: rgb(252, 188, 93);
|
|
|
|
right: -11px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tooltip#webdev-slides-tooltip::after {
|
|
|
|
content: 'Web Dev & Git Version Control';
|
|
|
|
color: rgb(252, 188, 93);
|
2022-07-26 20:26:25 -07:00
|
|
|
right: -17px;
|
2022-07-26 15:31:45 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.tooltip#python-slides-tooltip::after {
|
|
|
|
content: 'Intro to Python Programming';
|
|
|
|
color: rgb(252, 188, 93);
|
|
|
|
right: -11px;
|
|
|
|
}
|
|
|
|
|
2022-07-24 11:31:52 -07:00
|
|
|
.workshop-difficulty {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
|
|
background-color: #176e2a;
|
|
|
|
padding: 3px 30px;
|
|
|
|
justify-content: space-around;
|
|
|
|
}
|
|
|
|
|
2022-10-15 15:34:07 -07:00
|
|
|
.workshop-status {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
|
|
background-color: #963c3c;
|
|
|
|
padding: 3px 30px;
|
|
|
|
justify-content: space-around;
|
|
|
|
}
|
|
|
|
|
2022-07-23 16:47:05 -07:00
|
|
|
.workshop-footer {
|
2022-07-23 00:51:50 -07:00
|
|
|
padding: 10px 30px;
|
2022-07-23 16:47:05 -07:00
|
|
|
text-align: center;
|
|
|
|
background-color: #151618;
|
2022-07-23 18:01:46 -07:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2022-06-06 20:44:54 -07:00
|
|
|
}
|
|
|
|
|
2022-07-23 00:51:50 -07:00
|
|
|
/* Rules */
|
2022-06-01 14:37:46 -07:00
|
|
|
#rules-description {
|
|
|
|
margin: 10px 20px;
|
2022-06-03 18:51:23 -07:00
|
|
|
font-size: 18px;
|
2022-06-01 14:37:46 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#photo-description {
|
|
|
|
margin: 10px 20px;
|
|
|
|
}
|
|
|
|
|
2022-07-19 01:01:21 -07:00
|
|
|
.rules-box {
|
2022-06-01 14:37:46 -07:00
|
|
|
border-radius: 10px;
|
|
|
|
border: 1px solid white;
|
2022-06-03 18:51:23 -07:00
|
|
|
background-color: #272b1f;
|
2022-06-01 14:37:46 -07:00
|
|
|
margin: 10px auto;
|
2022-06-04 23:43:19 -07:00
|
|
|
width: 90%;
|
2022-06-01 14:37:46 -07:00
|
|
|
max-width: 850px;
|
2022-07-01 20:59:47 -07:00
|
|
|
min-width: 350px;
|
2022-06-01 14:37:46 -07:00
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
2022-07-19 01:01:21 -07:00
|
|
|
#disclaimer {
|
|
|
|
background-color: #2b1f20;
|
|
|
|
}
|
|
|
|
|
2022-05-31 18:02:11 -07:00
|
|
|
#rules-container {
|
2022-06-09 22:02:33 -07:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-top: 20px;
|
|
|
|
justify-content: center;
|
2022-05-31 18:02:11 -07:00
|
|
|
}
|
|
|
|
|
2022-06-01 14:37:46 -07:00
|
|
|
#guidelines {
|
|
|
|
margin: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#code-of-conduct {
|
|
|
|
margin: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rules-card {
|
|
|
|
position: relative;
|
|
|
|
padding: 10px;
|
|
|
|
margin: 0 0 20px 20px;
|
|
|
|
background: rgb(47, 55, 70);
|
|
|
|
color: rgb(179, 179, 179);
|
|
|
|
border-radius: 8px;
|
|
|
|
max-width: 400px;
|
|
|
|
}
|
|
|
|
|
2022-06-03 18:51:23 -07:00
|
|
|
.code-card {
|
|
|
|
background: rgb(40, 63, 52);
|
|
|
|
}
|
|
|
|
|
2022-06-01 14:37:46 -07:00
|
|
|
#rules-main-card {
|
|
|
|
width: 400px;
|
|
|
|
min-width: 300px;
|
|
|
|
border-radius: 10px;
|
|
|
|
background-color: #131d29;
|
|
|
|
margin: 10px auto;
|
|
|
|
padding: 10px 30px;
|
|
|
|
box-shadow: 5px 5px 10px rgb(0 0 0 / 20%);
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2022-06-03 18:51:23 -07:00
|
|
|
#code-main-card {
|
|
|
|
width: 400px;
|
|
|
|
min-width: 300px;
|
|
|
|
border-radius: 10px;
|
|
|
|
background-color: #15271b;
|
|
|
|
margin: 10px auto;
|
|
|
|
padding: 10px 30px;
|
|
|
|
box-shadow: 5px 5px 10px rgb(0 0 0 / 20%);
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2022-06-01 14:37:46 -07:00
|
|
|
#rules-header {
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Title of the card */
|
|
|
|
.rules-title {
|
|
|
|
color: rgb(253, 103, 103);
|
|
|
|
position: relative;
|
|
|
|
font-size: 17px;
|
|
|
|
}
|
|
|
|
|
2022-06-03 18:51:23 -07:00
|
|
|
.code-title {
|
|
|
|
color: rgb(212, 100, 223);
|
|
|
|
}
|
|
|
|
|
2022-06-01 14:37:46 -07:00
|
|
|
.rules-card::before {
|
|
|
|
content: "";
|
|
|
|
font-size: 30px;
|
|
|
|
position: absolute;
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
left: -28px;
|
|
|
|
}
|
|
|
|
|
2022-07-25 18:38:24 -07:00
|
|
|
.rules-1::before {
|
2022-06-01 14:37:46 -07:00
|
|
|
content: "1";
|
|
|
|
}
|
2022-07-25 18:38:24 -07:00
|
|
|
.rules-2::before {
|
2022-06-01 14:37:46 -07:00
|
|
|
content: "2";
|
|
|
|
}
|
2022-07-25 18:38:24 -07:00
|
|
|
.rules-3::before {
|
2022-06-01 14:37:46 -07:00
|
|
|
content: "3";
|
|
|
|
}
|
2022-07-25 18:38:24 -07:00
|
|
|
.rules-4::before {
|
2022-06-01 14:37:46 -07:00
|
|
|
content: "4";
|
|
|
|
}
|
2022-07-25 18:38:24 -07:00
|
|
|
.rules-5::before {
|
2022-06-01 14:37:46 -07:00
|
|
|
content: "5";
|
|
|
|
}
|
|
|
|
|
2022-06-03 19:24:44 -07:00
|
|
|
.rules-card:hover {
|
|
|
|
filter: brightness(1.2);
|
|
|
|
transition: 0.5s;
|
|
|
|
}
|
|
|
|
|
2022-05-31 18:02:11 -07:00
|
|
|
#prizes-container {
|
2022-06-09 22:02:33 -07:00
|
|
|
display: grid;
|
|
|
|
margin: 50px auto 0;
|
|
|
|
width: 80%;
|
2022-07-17 22:55:34 -07:00
|
|
|
height: auto;
|
2022-06-09 22:02:33 -07:00
|
|
|
justify-content: center;
|
|
|
|
grid-template-columns: repeat(3, 1fr);
|
2022-05-31 18:02:11 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.podium-description {
|
|
|
|
width: 100%;
|
2022-06-01 00:54:16 -07:00
|
|
|
height: auto;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
text-align: center;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2022-06-02 16:33:08 -07:00
|
|
|
.prize-desc {
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
text-align: center;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2022-07-17 23:23:54 -07:00
|
|
|
.prize-desc:hover > .prize-text {
|
2022-06-02 17:35:28 -07:00
|
|
|
transform: rotate3d(0, 1, 0, 360deg);
|
2022-06-03 01:42:59 -07:00
|
|
|
transition: ease-in-out 0.5s;
|
2022-06-02 16:33:08 -07:00
|
|
|
}
|
|
|
|
|
2022-06-01 00:54:16 -07:00
|
|
|
.prize-laurel {
|
|
|
|
height: 150px;
|
2022-06-03 18:51:23 -07:00
|
|
|
width: 150px;
|
2022-06-01 00:54:16 -07:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2022-07-14 17:59:51 -07:00
|
|
|
.prize-text {
|
2022-06-01 00:54:16 -07:00
|
|
|
position: absolute;
|
2022-06-03 01:42:59 -07:00
|
|
|
color: rgb(167, 146, 234);
|
2022-06-01 00:54:16 -07:00
|
|
|
font-size: 25px;
|
2022-07-24 20:30:04 -07:00
|
|
|
margin-bottom: 167px;
|
2022-07-14 17:59:51 -07:00
|
|
|
line-height: 25px;
|
2022-07-17 22:55:34 -07:00
|
|
|
z-index: 1;
|
2022-07-14 17:59:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.prize-title {
|
|
|
|
color: rgb(167, 146, 234);
|
|
|
|
font-size: 25px;
|
2022-06-01 00:54:16 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.prize-content {
|
2022-06-02 16:33:08 -07:00
|
|
|
color:rgb(129, 218, 126);
|
|
|
|
font-size: 20px;
|
2022-07-17 22:55:34 -07:00
|
|
|
transform: rotate3d(0, 1, 0, 360deg);
|
|
|
|
transition: ease 0.5s;
|
2022-05-31 18:02:11 -07:00
|
|
|
}
|
|
|
|
|
2022-07-14 17:59:51 -07:00
|
|
|
.prize-subtitle {
|
2022-07-17 22:55:34 -07:00
|
|
|
margin: 10px 0;
|
2022-05-31 18:02:11 -07:00
|
|
|
}
|
|
|
|
|
2022-07-25 18:38:24 -07:00
|
|
|
.prize-column {
|
2022-07-14 17:59:51 -07:00
|
|
|
display: flex;
|
|
|
|
flex-flow: column-reverse;
|
2022-05-31 18:02:11 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#second-podium {
|
|
|
|
width: 100%;
|
|
|
|
height: 50px;
|
|
|
|
background-color: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
#first-podium {
|
|
|
|
width: 100%;
|
|
|
|
height: 90px;
|
|
|
|
background-color: #333;
|
2022-06-01 18:54:41 -07:00
|
|
|
align-items: center;
|
|
|
|
text-align: center;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2022-05-31 18:02:11 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#third-podium {
|
|
|
|
width: 100%;
|
|
|
|
height: 40px;
|
|
|
|
background-color: #333;
|
|
|
|
}
|
|
|
|
|
2022-06-01 18:54:41 -07:00
|
|
|
.podium-edge {
|
|
|
|
width: 105%;
|
|
|
|
height: 10px;
|
|
|
|
background-color: #24282e;
|
|
|
|
border-radius: 4px;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#prize-logo {
|
|
|
|
height: 50px;
|
2022-06-03 18:51:23 -07:00
|
|
|
width: 50px;
|
2022-06-01 18:54:41 -07:00
|
|
|
border-radius: 50%;
|
|
|
|
border: 1px solid rgb(119, 119, 119);
|
|
|
|
}
|
|
|
|
|
|
|
|
.podium-label {
|
|
|
|
position: relative;
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#podium-label-1 {
|
|
|
|
margin-right: 7px;
|
2022-10-15 15:34:07 -07:00
|
|
|
color: #7ed856;
|
2022-06-01 18:54:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#podium-label-2 {
|
|
|
|
margin-left: 7px;
|
2022-10-15 15:34:07 -07:00
|
|
|
color: #018036;
|
2022-06-01 18:54:41 -07:00
|
|
|
}
|
|
|
|
|
2022-07-17 22:55:34 -07:00
|
|
|
.prize-img {
|
2022-07-23 16:47:05 -07:00
|
|
|
height: 85px;
|
2022-07-17 22:55:34 -07:00
|
|
|
}
|
|
|
|
|
2022-08-06 23:19:51 -07:00
|
|
|
#drone-img {
|
|
|
|
width: 139px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sling-img {
|
|
|
|
width: 147px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#speaker-img {
|
|
|
|
width: 111px;
|
|
|
|
}
|
|
|
|
|
2022-06-30 22:46:03 -07:00
|
|
|
#prize-box {
|
|
|
|
border-radius: 10px;
|
|
|
|
border: 1px solid white;
|
2022-07-26 00:49:00 -07:00
|
|
|
background-color: #2c2c2c;
|
2022-07-14 17:59:51 -07:00
|
|
|
margin: 30px auto 10px;
|
2022-06-30 22:46:03 -07:00
|
|
|
width: 70%;
|
|
|
|
max-width: 850px;
|
2022-07-01 20:59:47 -07:00
|
|
|
min-width: 350px;
|
2022-06-30 22:46:03 -07:00
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#prize-list {
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
2022-12-15 20:09:54 -08:00
|
|
|
/* Team */
|
2022-06-01 19:32:00 -07:00
|
|
|
#team-container {
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: center;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#team-container article {
|
2022-06-01 21:02:59 -07:00
|
|
|
padding: 20px 35px;
|
2022-06-02 11:59:21 -07:00
|
|
|
width: 430px;
|
2022-06-01 19:32:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.team-title {
|
|
|
|
font-size: 25px;
|
2022-06-02 11:59:21 -07:00
|
|
|
color:rgb(161, 245, 150);
|
|
|
|
margin-bottom: 10px;
|
2022-06-01 19:32:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.team-entry {
|
|
|
|
display: flex;
|
|
|
|
align-content: stretch;
|
2022-06-02 11:59:21 -07:00
|
|
|
padding: 15px;
|
|
|
|
border-radius: 10px;
|
2022-06-06 20:44:54 -07:00
|
|
|
width: 357px;
|
2022-06-02 11:59:21 -07:00
|
|
|
border: 0px solid rgb(54, 54, 54);
|
|
|
|
}
|
|
|
|
|
2022-06-04 19:02:18 -07:00
|
|
|
@keyframes card-img-pullout {
|
2022-06-03 22:00:13 -07:00
|
|
|
0% {
|
2022-06-04 19:02:18 -07:00
|
|
|
transform: translateX(110px);
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
transform: translateX(110px);
|
2022-06-03 22:00:13 -07:00
|
|
|
}
|
|
|
|
100% {
|
2022-06-04 19:02:18 -07:00
|
|
|
transform: translateX(0px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@keyframes card-desc-pullout {
|
|
|
|
0% {
|
|
|
|
transform: translateX(-110px);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
transform: translateX(-110px);
|
|
|
|
}
|
|
|
|
80% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
opacity: 1;
|
|
|
|
transform: translateX(0px);
|
|
|
|
}
|
|
|
|
}
|
2022-06-03 22:00:13 -07:00
|
|
|
|
2022-06-02 11:59:21 -07:00
|
|
|
.team-entry:hover {
|
|
|
|
transform: scale(1.01);
|
|
|
|
border: 1px solid rgb(54, 54, 54);
|
|
|
|
transition: 0.5s;
|
2022-06-01 19:32:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.team-picture {
|
|
|
|
width: auto;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.team-picture img {
|
|
|
|
height: 100px;
|
2022-06-03 18:51:23 -07:00
|
|
|
width: 100px;
|
2022-06-01 19:32:00 -07:00
|
|
|
border-radius: 50%;
|
2022-06-02 11:59:21 -07:00
|
|
|
border: 1px solid rgb(161, 161, 161);
|
2022-06-01 19:32:00 -07:00
|
|
|
}
|
|
|
|
|
2022-06-30 14:43:32 -07:00
|
|
|
#jd {
|
|
|
|
border: 0px;
|
|
|
|
}
|
|
|
|
|
2022-06-01 19:32:00 -07:00
|
|
|
.team-description {
|
|
|
|
text-align: left;
|
|
|
|
width: auto;
|
|
|
|
display: block;
|
|
|
|
margin-left: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.person-name {
|
|
|
|
font-size: 20px;
|
|
|
|
color:rgb(99, 169, 250);
|
|
|
|
padding-bottom: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.person-subtitle {
|
|
|
|
font-size: 15px;
|
|
|
|
color: rgb(129, 129, 129);
|
|
|
|
}
|
|
|
|
|
|
|
|
.person-contact {
|
|
|
|
font-size: 15px;
|
2022-06-01 21:02:59 -07:00
|
|
|
padding-top: 16px;
|
|
|
|
font-style: normal;
|
2022-06-01 19:32:00 -07:00
|
|
|
}
|
|
|
|
|
2022-05-31 18:02:11 -07:00
|
|
|
/* Utilities */
|
|
|
|
#line-header {
|
|
|
|
width: 200px;
|
|
|
|
margin: 0 auto 5px;
|
2022-06-02 23:19:56 -07:00
|
|
|
animation: grow-wide ease 2s;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes grow-wide {
|
|
|
|
0% {
|
|
|
|
transform: scale(0);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: scale(1);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2022-05-31 18:02:11 -07:00
|
|
|
}
|
|
|
|
|
2022-07-18 16:46:17 -07:00
|
|
|
.tooltip-rules {
|
2022-06-01 17:58:57 -07:00
|
|
|
text-decoration: underline dotted;
|
|
|
|
cursor: help;
|
|
|
|
}
|
|
|
|
|
2022-05-31 18:02:11 -07:00
|
|
|
.emphasis-text {
|
2022-07-17 22:55:34 -07:00
|
|
|
color:rgb(51, 235, 189);
|
2022-05-31 18:02:11 -07:00
|
|
|
}
|
|
|
|
|
2022-06-01 21:02:59 -07:00
|
|
|
.discord-text {
|
2022-06-01 23:56:29 -07:00
|
|
|
color: rgb(110, 112, 247);
|
|
|
|
}
|
|
|
|
|
|
|
|
.discord-tag {
|
|
|
|
color: rgb(150, 150, 150);
|
2022-06-01 21:02:59 -07:00
|
|
|
}
|
|
|
|
|
2022-05-31 18:02:11 -07:00
|
|
|
.line {
|
2022-06-09 22:02:33 -07:00
|
|
|
width: 100px;
|
|
|
|
margin: 10px auto;
|
2022-05-31 18:02:11 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#arrow-link {
|
2022-06-09 22:02:33 -07:00
|
|
|
color:rgb(252, 188, 93);
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
2022-05-31 18:02:11 -07:00
|
|
|
}
|
|
|
|
|
2022-07-17 22:55:34 -07:00
|
|
|
.bottom-text {
|
|
|
|
margin: 10px 5px;
|
|
|
|
}
|
|
|
|
|
2022-05-31 18:02:11 -07:00
|
|
|
.link {
|
2022-06-09 22:02:33 -07:00
|
|
|
color:rgb(252, 188, 93);
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
background:
|
|
|
|
linear-gradient(to right, rgba(100, 200, 200, 1), rgba(100, 200, 200, 1)),
|
|
|
|
linear-gradient(to right, rgba(255, 0, 0, 1), rgba(255, 0, 180, 1), rgba(0, 100, 200, 1));
|
|
|
|
background-size: 100% 0.1em, 0 0.1em;
|
|
|
|
background-position: 100% 100%, 0 100%;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
transition: background-size 400ms;
|
2022-05-31 18:02:11 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.link:hover {
|
2022-06-09 22:02:33 -07:00
|
|
|
color:rgba(252, 188, 93, 0.719);
|
|
|
|
background-size: 0 0.1em, 100% 0.1em;
|
2022-05-31 18:02:11 -07:00
|
|
|
}
|
|
|
|
|
2022-07-18 22:11:49 -07:00
|
|
|
.new-tab-icon {
|
|
|
|
fill: white;
|
|
|
|
height: 10px;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
2022-07-19 13:14:06 -07:00
|
|
|
.discord-icon {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
fill: rgb(110, 112, 247);
|
|
|
|
float: left;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
2022-07-23 16:47:05 -07:00
|
|
|
@media (max-width: 869px) {
|
|
|
|
#footer-desc {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 565px) {
|
|
|
|
footer * {
|
|
|
|
text-align: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
.footer-title {
|
|
|
|
margin-bottom: 0 !important;
|
|
|
|
}
|
|
|
|
#footer-desc, #footer-links, #footer-location {
|
|
|
|
margin-right: 0 !important;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-31 18:02:11 -07:00
|
|
|
footer {
|
2022-06-09 22:02:33 -07:00
|
|
|
width: auto;
|
2022-06-30 13:19:56 -07:00
|
|
|
height: auto;
|
2022-06-09 22:02:33 -07:00
|
|
|
background-color: rgb(24, 24, 24);
|
|
|
|
justify-content: center;
|
2022-06-30 13:19:56 -07:00
|
|
|
align-items: left;
|
2022-06-09 22:02:33 -07:00
|
|
|
text-align: center;
|
2022-06-30 13:19:56 -07:00
|
|
|
padding: 20px;
|
2022-06-09 22:02:33 -07:00
|
|
|
flex-flow: row wrap;
|
2022-05-31 18:02:11 -07:00
|
|
|
}
|
|
|
|
|
2022-06-30 13:19:56 -07:00
|
|
|
#footer-container {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: center;
|
|
|
|
align-content: stretch;
|
2022-05-31 18:02:11 -07:00
|
|
|
}
|
|
|
|
|
2022-06-30 13:19:56 -07:00
|
|
|
#footer-logo {
|
2022-06-30 13:45:55 -07:00
|
|
|
height: 45px;
|
|
|
|
width: 232px;
|
2022-06-30 13:19:56 -07:00
|
|
|
margin-left: -5px;
|
2022-05-31 18:02:11 -07:00
|
|
|
}
|
|
|
|
|
2022-06-30 13:19:56 -07:00
|
|
|
#footer-desc {
|
|
|
|
width: 350px;
|
|
|
|
text-align: left;
|
|
|
|
line-height: 25px;
|
|
|
|
font-size: 18px;
|
2022-07-04 23:22:07 -07:00
|
|
|
margin-right: 40px;
|
2022-06-30 13:19:56 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#socials {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.socials-icon {
|
2022-10-15 15:34:07 -07:00
|
|
|
margin-right: 10px;
|
2022-06-30 13:19:56 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#footer-copyright {
|
|
|
|
color: rgb(129, 129, 129);
|
|
|
|
}
|
|
|
|
|
|
|
|
#footer-line {
|
|
|
|
width: 100%;
|
|
|
|
margin: 10px auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#footer-links {
|
2022-07-06 15:51:50 -07:00
|
|
|
width: 180px;
|
|
|
|
margin-top: 7px;
|
|
|
|
margin-right: 20px;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2022-07-23 16:47:05 -07:00
|
|
|
.footer-title {
|
|
|
|
margin-bottom: 19px;
|
|
|
|
}
|
|
|
|
|
2022-07-06 15:51:50 -07:00
|
|
|
#footer-location {
|
|
|
|
width: 220px;
|
2022-06-30 13:19:56 -07:00
|
|
|
margin-top: 7px;
|
2022-07-04 23:22:07 -07:00
|
|
|
margin-right: 20px;
|
2022-06-30 13:19:56 -07:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer li {
|
|
|
|
line-height: 30px;
|
|
|
|
list-style: none;
|
2022-12-17 00:23:37 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Are you interested in coding, engineering, or STEM? Does a weekend full of intense brainstorming and
|
|
|
|
coding extravaganza with tons of other like-minded students sound (at the least bit) interesting to you?
|
|
|
|
Gilroy Hacks is all about allowing passionate students showcase their skills and teaching new concepts to
|
2023-01-09 02:14:54 -08:00
|
|
|
newcomers. If this sounds like you, then all aboard the Hackathon tra */
|