diff --git a/public/index-s23.css b/public/index-s23.css index 2c69dca6..e5ec2c0c 100644 --- a/public/index-s23.css +++ b/public/index-s23.css @@ -6,7 +6,7 @@ --primary-color: #FFF5e8; /* Logo, link colors, text */ --primary-color-alt: #4fab5f; /* Form body bg, form headers text */ --secondary-color: #000000; /* Barely used accent color...combine this and primary-color-alt...? */ - --secondary-color-alt:#1f6aa0; /* Background color */ + --secondary-color-alt: #8db67e; /* Background color */ --accent-color: #4bbede; /* Logout, Live button color */ /* split card colors */ --splitCard-color:#000000; diff --git a/public/tailwind-output.css b/public/tailwind-output.css index a4fc8c96..0561898a 100644 --- a/public/tailwind-output.css +++ b/public/tailwind-output.css @@ -826,6 +826,18 @@ video { top: 8rem; } +.bottom-\[12rem\] { + bottom: 12rem; +} + +.bottom-\[3rem\] { + bottom: 3rem; +} + +.right-4 { + right: 1rem; +} + .z-40 { z-index: 40; } @@ -951,6 +963,34 @@ video { margin-left: 6rem; } +.mt-20 { + margin-top: 5rem; +} + +.mt-\[2rem\] { + margin-top: 2rem; +} + +.mt-\[40rem\] { + margin-top: 40rem; +} + +.mt-\[12rem\] { + margin-top: 12rem; +} + +.mt-\[4rem\] { + margin-top: 4rem; +} + +.mt-\[8rem\] { + margin-top: 8rem; +} + +.mt-\[15rem\] { + margin-top: 15rem; +} + .block { display: block; } @@ -1335,6 +1375,16 @@ video { background-color: rgb(241 225 146 / var(--tw-bg-opacity)); } +.bg-f23-lightGreen { + --tw-bg-opacity: 1; + background-color: rgb(141 182 126 / var(--tw-bg-opacity)); +} + +.bg-f23-mediumGreen { + --tw-bg-opacity: 1; + background-color: rgb(62 129 105 / var(--tw-bg-opacity)); +} + .bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); } @@ -1674,6 +1724,16 @@ video { background-color: rgb(0 0 0 / var(--tw-bg-opacity)); } +.hover\:bg-f23-mediumGreen:hover { + --tw-bg-opacity: 1; + background-color: rgb(62 129 105 / var(--tw-bg-opacity)); +} + +.hover\:bg-f23-lightGreen:hover { + --tw-bg-opacity: 1; + background-color: rgb(141 182 126 / var(--tw-bg-opacity)); +} + .hover\:bg-opacity-20:hover { --tw-bg-opacity: 0.2; } @@ -1805,6 +1865,10 @@ video { visibility: hidden; } + .md\:fixed { + position: fixed; + } + .md\:absolute { position: absolute; } @@ -1881,6 +1945,18 @@ video { bottom: 16rem; } + .md\:top-\[40rem\] { + top: 40rem; + } + + .md\:top-\[25rem\] { + top: 25rem; + } + + .md\:-right-16 { + right: -4rem; + } + .md\:my-0 { margin-top: 0px; margin-bottom: 0px; @@ -1943,6 +2019,18 @@ video { width: 28rem; } + .md\:w-\[33rem\] { + width: 33rem; + } + + .md\:w-\[36rem\] { + width: 36rem; + } + + .md\:w-\[40rem\] { + width: 40rem; + } + .md\:flex-row { flex-direction: row; } diff --git a/src/App.jsx b/src/App.jsx index 1a282220..41fa6cad 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -244,7 +244,8 @@ class App extends Component { return ( {/* BrowserRouter wil allow us to switch between the different pages in our SPA based on the URL routing */} -
+
{/* Application alert messages go here */} diff --git a/src/NavBar.jsx b/src/NavBar.jsx index 9c95bdbe..e78685ae 100644 --- a/src/NavBar.jsx +++ b/src/NavBar.jsx @@ -189,7 +189,7 @@ class NavBar extends Component { open={this.state.open} onClose={this.handleClose} > - + + className="w-full h-fit"> diff --git a/src/components/_Landing/sections/faq/QuestionContainer.tsx b/src/components/_Landing/sections/faq/QuestionContainer.tsx index bb9e2c44..710884cb 100644 --- a/src/components/_Landing/sections/faq/QuestionContainer.tsx +++ b/src/components/_Landing/sections/faq/QuestionContainer.tsx @@ -13,7 +13,7 @@ function Question(props: { question: string, answer: string }) { return ( {({ open }) => ( -
+
diff --git a/src/components/_Landing/sections/hero/Navbar.tsx b/src/components/_Landing/sections/hero/Navbar.tsx index 75d9dcb7..82b49b79 100644 --- a/src/components/_Landing/sections/hero/Navbar.tsx +++ b/src/components/_Landing/sections/hero/Navbar.tsx @@ -11,7 +11,7 @@ function MenuItem(props: { sectionName: string }) { {({ active }) => (