diff --git a/index.html b/index.html index 967f667..ee2d75d 100644 --- a/index.html +++ b/index.html @@ -17,7 +17,19 @@
- +
+

If you are interested in joining Titanium Tigers, complete our form:

+ Sign Up Form +
+ + +
Home @@ -119,7 +131,8 @@

Support Us

FRC Challenge Videos

- This is the official game video for the 2023 season Charged Up and the teaser for the 2024 season Crescendo. + These are the official game videos for the 2023 season Charged Up and the 2022 season Rapid + React.

diff --git a/scripts/x_button.js b/scripts/x_button.js deleted file mode 100644 index aac5005..0000000 --- a/scripts/x_button.js +++ /dev/null @@ -1,6 +0,0 @@ -function closeSignupPopup() { - let popup = document.getElementById("header-interest-form"); - popup.style.display = "none"; - let x_button = document.getElementById("x-button"); - x_button.style.display = "none"; -} \ No newline at end of file diff --git a/styles/header.css b/styles/header.css index 6edfa91..c126dde 100644 --- a/styles/header.css +++ b/styles/header.css @@ -5,51 +5,6 @@ header { background: var(--secondaryColor); } -#header-interest-form { - width: 100%; - padding: .5% 25%; - display: flex; - flex-direction: row; - gap: 3%; - background-color: var(--themeColor); -} - -#header-interest-form p { - margin: 0; - padding: 1% 0; - font-size: 1.3vw; -} - -#header-interest-form a { - margin: 0; - font-size: 1.3vw; - color: var(--mainTextColor); - border: 1px solid var(--mainTextColor); - border-radius: 5px; - padding: .9% 1% 1%; - text-decoration: none; -} - -#header-interest-form a:hover { - backdrop-filter: brightness(1.15); -} - -#x-button { - color: var(--mainTextColor); - background: transparent; - border: none; - font-size: 1.3vw; - position: absolute; - top: 8%; - right: 1%; - cursor: pointer; - font-family: Arial, serif; -} - -#x-button:hover { - transform: rotate(180deg); -} - #header-inner { padding: 1.8% 20% 1.5%; }