From 0616703b32f1777a1576feb1eb353565d5d191a8 Mon Sep 17 00:00:00 2001 From: Andy Tang <133243344+AndyTang285@users.noreply.github.com> Date: Sun, 15 Feb 2026 17:00:27 -0500 Subject: [PATCH 01/23] redesign nav --- docs/clients&proj.html | 0 docs/contacts.html | 0 docs/css/common.css | 31 +++++++++++++++++++++---------- docs/css/home.css | 3 ++- docs/faq.html | 0 docs/index.html | 22 ++++++++++++++++------ 6 files changed, 39 insertions(+), 17 deletions(-) create mode 100644 docs/clients&proj.html create mode 100644 docs/contacts.html create mode 100644 docs/faq.html diff --git a/docs/clients&proj.html b/docs/clients&proj.html new file mode 100644 index 0000000..e69de29 diff --git a/docs/contacts.html b/docs/contacts.html new file mode 100644 index 0000000..e69de29 diff --git a/docs/css/common.css b/docs/css/common.css index ee8e772..0edadad 100644 --- a/docs/css/common.css +++ b/docs/css/common.css @@ -1,7 +1,11 @@ +/*THE ROCKET CURSOR :root { --rocket-cursor: url("data:image/svg+xml;utf8,🚀") 16 0,auto; } + */ + + body { color: rgb(0, 0, 0); @@ -28,7 +32,7 @@ body { .grow:hover { transform: scale(1.05); } .button { - color: #fff; + color: black; background-color:rgba(55, 214, 185, 0.85); border: none; @@ -52,29 +56,34 @@ button[disabled]{ color: #666666; box-shadow: rgba(0, 0, 0, 0); text-shadow: rgba(0, 0, 0, 0); - cursor: var(--rocket-cursor); + /* cursor: var(--rocket-cursor); */ } +/* Nav bar sub ==> inter */ + /* site brand logo */ .void-logo:hover{ fill: white; } - .site-brand { + .site-brand { /* main logo */ color: white; font-size: 3.6rem; + width: 3 rem; + white-space: nowrap; /*put the "void tech" logo into 1 line*/ + } .logo-box { margin-left: 1rem; color: white; display: flex; - width: 13rem; + width: 20rem; align-items: center; justify-content: space-between; } .void-logo { height: 3.5rem; width: 3.5rem; - fill: #37D6B9; + fill: #0e100f; animation-name: spin; animation-duration: 500ms; animation-iteration-count: 2; @@ -88,29 +97,31 @@ button[disabled]{ /* navbar */ .navbar { - border-bottom: 1px solid white; + /* border-bottom: 1px solid white; */ position: fixed; display: block; width: 100%; - padding-top: .75rem; + padding-top: 2rem; padding-bottom: 1.25rem; + + padding-right: 2.5rem; z-index: 2; background-image: linear-gradient(to bottom, #141212, #00000041); } .navbar-solid { background-image: unset; - background-color: #0C1830; + background-color: rgba(0,0,0,0.8); } .flexy { display: flex; justify-content: space-between; } .nav-links { - width: 42rem; + width: 60rem; justify-content: space-around; align-items: center; cursor: pointer; - color: #FFFFFF; + color: rgba(153, 153, 153); } .nav-links .active { color: #37D6B9; diff --git a/docs/css/home.css b/docs/css/home.css index da88d56..9abb0e5 100644 --- a/docs/css/home.css +++ b/docs/css/home.css @@ -204,9 +204,10 @@ section { padding: 5rem 3rem; } +/* CHANGE THE HEADINGS IN HOME PAGE (e.g. about us, our mission,...) */ /* section headings */ .section-heading { - font-family: "Jost"; + font-family: "arial"; font-style: normal; font-weight: 900; font-size: 45px; diff --git a/docs/faq.html b/docs/faq.html new file mode 100644 index 0000000..e69de29 diff --git a/docs/index.html b/docs/index.html index 5184f8d..c078f4f 100644 --- a/docs/index.html +++ b/docs/index.html @@ -9,6 +9,7 @@ +
+ + -
VOID
+
VOID tech.
From 2563a888e0de8244e5d8f9e2021498591fa1953a Mon Sep 17 00:00:00 2001 From: Andy Tang <133243344+AndyTang285@users.noreply.github.com> Date: Sun, 22 Feb 2026 16:17:17 -0500 Subject: [PATCH 02/23] changed some colors in the navbar --- docs/css/common.css | 9 ++++----- docs/index.html | 14 ++++---------- 2 files changed, 8 insertions(+), 15 deletions(-) diff --git a/docs/css/common.css b/docs/css/common.css index 0edadad..bcd90fa 100644 --- a/docs/css/common.css +++ b/docs/css/common.css @@ -33,8 +33,8 @@ body { .button { color: black; - background-color:rgba(55, 214, 185, 0.85); - + font-weight: bold; + background-color: #50CDF7; border: none; padding: 1rem; width: 75px; @@ -43,7 +43,6 @@ body { cursor: pointer; display: inline-block; box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.25); - text-shadow: 1px 1px 3px #0000006e; } button:hover:enabled{ @@ -124,10 +123,10 @@ button[disabled]{ color: rgba(153, 153, 153); } .nav-links .active { - color: #37D6B9; + color: #50CDF7; } .nav-link:hover { - color: #37D6B9; + color: #50CDF7; } /* mobile navbar */ diff --git a/docs/index.html b/docs/index.html index c078f4f..793f199 100644 --- a/docs/index.html +++ b/docs/index.html @@ -95,7 +95,7 @@ - @@ -118,14 +118,8 @@
- V - O - I - D - T - E - C - H +

VOID

+

tech.

From 915341d57c6308f5806ee413ead02bbe0ff629a7 Mon Sep 17 00:00:00 2001 From: Andy Tang <133243344+AndyTang285@users.noreply.github.com> Date: Sun, 22 Feb 2026 16:57:19 -0500 Subject: [PATCH 03/23] done with navbar --- docs/css/common.css | 10 +++++----- docs/css/home.css | 35 +++++++++++++++++++++++++++++++++-- docs/index.html | 2 ++ docs/js/common.js | 3 +++ 4 files changed, 43 insertions(+), 7 deletions(-) diff --git a/docs/css/common.css b/docs/css/common.css index bcd90fa..116741f 100644 --- a/docs/css/common.css +++ b/docs/css/common.css @@ -70,14 +70,14 @@ button[disabled]{ width: 3 rem; white-space: nowrap; /*put the "void tech" logo into 1 line*/ + } .logo-box { - margin-left: 1rem; - color: white; - display: flex; - width: 20rem; + display: flex; align-items: center; - justify-content: space-between; + gap: 1rem; + color: white; + } .void-logo { height: 3.5rem; diff --git a/docs/css/home.css b/docs/css/home.css index 9abb0e5..217da53 100644 --- a/docs/css/home.css +++ b/docs/css/home.css @@ -122,10 +122,28 @@ cubic-bezier(.3, .7, .4, 1.5); }*/ + .header-desc { + color: white; font-size: 3rem; - text-align: center; + text-align: left; + text-shadow: 2px 2px 5px rgb(43, 43, 43); + opacity: 0; + white-space: nowrap; + + transform: translateY(2rem); + animation-name: moveUp; + animation-fill-mode: forwards; + animation-delay: 1s; + animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1); + animation-duration: 2s; +} +.header-about { + color: white; + font-size: 2rem; + width: 70rem; + text-align: left; text-shadow: 2px 2px 5px rgb(43, 43, 43); opacity: 0; @@ -141,9 +159,22 @@ .heading-box { padding-top: 40vh; height: 0; - text-align: center; + padding-left: 10vh; padding-bottom: 60vh; } + +#site-name-animated { + font-size: clamp(4rem, 8vw, 6rem); + display: flex; + align-items: baseline; + gap: 15px; + color: white; +} + +#site-name-animated h1 { + color: #50CDF7; +} + #site-name-animated.show span { opacity: 1; -webkit-transform: scale(1, 1); diff --git a/docs/index.html b/docs/index.html index 793f199..09bc3ab 100644 --- a/docs/index.html +++ b/docs/index.html @@ -124,6 +124,8 @@

tech.

Innovate. Create. Realize.
+
A University of Michigan student organization bridging the gap between + technology and business through real-world consulting projects.
diff --git a/docs/js/common.js b/docs/js/common.js index b422785..1c046cf 100644 --- a/docs/js/common.js +++ b/docs/js/common.js @@ -6,6 +6,8 @@ function spinny() { function stopSpinny() { this.classList.remove("infinite"); } + +/* particlesJS("particles-js", { particles: { number: { value: 500, density: { enable: true, value_area: 800 } }, @@ -60,6 +62,7 @@ particlesJS("particles-js", { }, retina_detect: true }); +*/ var update; update = function() { From 021389336bcedcfa422712c011de91701f488e2a Mon Sep 17 00:00:00 2001 From: Andy Tang <133243344+AndyTang285@users.noreply.github.com> Date: Sun, 22 Feb 2026 17:03:57 -0500 Subject: [PATCH 04/23] update --- docs/index.html | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/index.html b/docs/index.html index 09bc3ab..00dcdad 100644 --- a/docs/index.html +++ b/docs/index.html @@ -123,12 +123,14 @@

tech.

-
Innovate. Create. Realize.
+
INNOVATE. CREATE. REALIZE.
A University of Michigan student organization bridging the gap between technology and business through real-world consulting projects.
- - - + @@ -77,26 +77,31 @@ /> -
VOID
+
+ VOID tech. +
-