diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 02a0be4..0000000 Binary files a/.DS_Store and /dev/null differ diff --git a/css/general.css b/css/general.css index d01b474..609f476 100644 --- a/css/general.css +++ b/css/general.css @@ -132,6 +132,14 @@ nav li a:focus::after{ transition: 0.5s; } +.notification { + position: absolute; + text-align: center; + margin: auto; + z-index: 100; + visibility: hidden; +} + /* Responsive Functions */ @media (max-width: 800px) { .checkbtn { @@ -1085,6 +1093,7 @@ section { display: flex; align-content: stretch; width: 100%; + height: 100%; padding: 10px; border-radius: 10px; } @@ -1098,6 +1107,7 @@ section { flex-direction: column; padding: 5px 10px; width: 110px; + height: 75px; border-radius: 10px; } @@ -1108,6 +1118,7 @@ section { .cal-title { text-align: center; text-decoration: underline; + margin-bottom: 10px; } .vertical-line { @@ -1124,10 +1135,30 @@ section { .event-list { display: flex; flex-direction: column; + flex-wrap: wrap; +} + +.event-entry { + display: flex; + flex: row nowrap; + height: 38px; + margin-bottom: 7px; +} + +.time-column { + width: 25%; + height: 100%; + text-align: right; +} + +.event-column { + width: 75%; + height: 100%; + text-align: left; + padding-left: 15px; } .event-time { - margin-right: 20px; color: gray; } @@ -1404,6 +1435,7 @@ section { color: #ffde59; } +/* Teams */ #team-container { width: 100%; height: auto; diff --git a/img/.DS_Store b/img/.DS_Store deleted file mode 100644 index 908f667..0000000 Binary files a/img/.DS_Store and /dev/null differ diff --git a/index.html b/index.html index 7556e61..54301f4 100644 --- a/index.html +++ b/index.html @@ -4,6 +4,7 @@ Official Gilroy Hacks Website Source Code -> HTML (https://gilroyhacks.com) For more info, contact jamesdinh77 (at) protonmail (dot) com + --> @@ -55,6 +56,7 @@
  • Team
  • +
    @@ -298,7 +300,12 @@

    Community Room

    - 4-5pmOpening Ceremony +
    + 4-5pm +
    +
    + Opening Ceremony +
    @@ -315,7 +322,28 @@

    Study Room

    - 4-5pmOpening Ceremony +
    + 10am-5:30pm +
    +
    + Hacking Session +
    +
    +
    +
    + 11am-12pm +
    +
    + Web Dev Workshop +
    +
    +
    +
    + 2-3pm +
    +
    + Python Workshop +
    @@ -332,7 +360,28 @@

    Study Room

    - 4-5pmOpening Ceremony +
    + 1-2pm +
    +
    + Hacking Session +
    +
    +
    +
    + 2:30-3:30pm +
    +
    + Project Presentations +
    +
    +
    +
    + 4-4:30pm +
    +
    + Awards Ceremony +
    @@ -495,6 +544,9 @@ +
    + +

    Hackathon Team

    @@ -548,7 +600,7 @@

    Clement Boiteux

    Tech Support
    -
    Discord: Maul#8742
    +
    Discord: Maul#8742
    ezrabridger27@gmail.com
    @@ -579,6 +631,7 @@ © 2022 Gilroy Hacks
    diff --git a/js/data_checkbox.js b/js/data_checkbox.js index a436251..90ab54b 100644 --- a/js/data_checkbox.js +++ b/js/data_checkbox.js @@ -21,4 +21,17 @@ function check02() { } function checkt(id) { document.getElementById(id).checked = true; +} +function notifitcation_popup() { + var verify = true; + for (i = 0; i < checkbox.length; i++) + { + if (localStorage.getItem(checkboxes[i].value) != true) { + verify = false; + } + } + if (verify) { + document.getElementById("notification").style.visibility = "visible"; + + } } \ No newline at end of file