From ff0134eb0f1dfbe9ca41734dced3c1a98e435462 Mon Sep 17 00:00:00 2001 From: darkicewolf50 Date: Wed, 11 Jun 2025 15:08:48 -0600 Subject: [PATCH] feat(contact): desktop page finished --- src/Contact/Contact.css | 86 +++++++++++++++++++++++++++++++++++++++++ src/Contact/Contact.jsx | 49 ++++++++++++++++------- src/Header/Header.css | 3 ++ 3 files changed, 124 insertions(+), 14 deletions(-) diff --git a/src/Contact/Contact.css b/src/Contact/Contact.css index e69de29..17bb051 100644 --- a/src/Contact/Contact.css +++ b/src/Contact/Contact.css @@ -0,0 +1,86 @@ +#Contact a { + text-decoration: none; + color: inherit; +} + +#Contact ul { + list-style-type: none; + padding: 0px; + margin: 0px; +} + +#Contact img { + width: 100px; + height: 100px; +} + +#Contact h1, +#Contact h4, +#Contact p { + margin: 1svh 0svw; +} + +#Contact div { + display: flex; + flex-direction: row; + align-items: flex-start; + row-gap: 2svh; +} + +#Contact div:nth-child(1) { + flex-direction: row; + column-gap: 2svw; + /* justify-content: center; */ + align-items: center; + background: black; + color: white; + padding: 2svh 0svw; +} + +#Contact div:nth-child(1) div:first-child { + flex-direction: row; + margin-left: 4svw; +} + +#Contact div:nth-child(1) div:last-child { + flex-direction: column; + margin-left: auto; + margin-right: 16svw; +} + +#Contact div:nth-child(1) div:last-child h1 { + margin: 0px; + font-size: 40px; +} + +#Contact div:nth-child(1) img { + width: 300px; + height: 80svh; +} + +#Contact div:nth-child(2) div { + flex-direction: column; + font-size: 30px; + font-weight: bold; + margin: 0px; + padding: 0svh 2svw; +} + +#Contact div:nth-child(2) h1 { + text-wrap: nowrap; + align-self: flex-start; + margin-left: 2svw; + margin-right: 2svw; + font-size: 60px; +} + +#Contact div:nth-child(2) { + margin: 0svh 0svw; + justify-content: flex-start; + height: 40svh; +} + +#Contact div:last-child { + margin: 4svh 0svw; + justify-content: space-evenly; +} diff --git a/src/Contact/Contact.jsx b/src/Contact/Contact.jsx index 5d1c872..8c41af2 100644 --- a/src/Contact/Contact.jsx +++ b/src/Contact/Contact.jsx @@ -3,23 +3,39 @@ import "./Contact.css"; export default function Contact() { return ( - <> +
-

Hours of Operation

- -

Send us an email.

-

uofcbaja@gmail.com

-
-
    -
  • Wednesday: 6pm - 8pm
  • -
  • Saturday: 10am - 4pm
  • -
+
+ Team members bending a tube + Team member filing + Team member welding +
+
+

Hours of Operation

+ +

Send us an email.

+

uofcbaja@gmail.com

+
+
    +
  • Wednesday: 6pm - 8pm
  • +
  • Saturday: 10am - 4pm
  • +
+

Join the team

@@ -31,15 +47,20 @@ export default function Contact() { @UofCBaja
+ Carbon Fiber Transition
-

Sponsor the Team

email symbol +

Sponsor the Team

- + ); } diff --git a/src/Header/Header.css b/src/Header/Header.css index 5406f06..d72d4ac 100644 --- a/src/Header/Header.css +++ b/src/Header/Header.css @@ -228,3 +228,6 @@ nav a li:hover { #root.darkmode #darkModeToggle { filter: hue-rotate(180deg); } +a { + cursor: pointer; +}