Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion public/css/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -2028,7 +2028,16 @@
}

@media (max-width: 768px) {
.navbar-links,
.navbar-links {
display: flex !important;
gap: 0;
}

.navbar-links > a,
.navbar-links > .nav-dropdown {
display: none !important;
}

.navbar-actions,
#navGuest,
#navAuth {
Expand All @@ -2038,6 +2047,16 @@
.mobile-menu-btn {
display: flex;
}

.navbar-logo {
margin-right: auto !important;
}
}

@media (max-width: 375px) {
.logo-subtext {
display: none !important;
}
}


Expand Down
4 changes: 2 additions & 2 deletions public/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@
</div>
<div style="display: flex; flex-direction: column; justify-content: center;">
<span class="logo-text">Conn<span class="logo-dot">.</span></span>
<span
style="font-size: 0.5rem; color: var(--text-secondary); line-height: 1; margin-top: -1px; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.8;">powered
<span class="logo-subtext"
style="font-size: 0.5rem; color: var(--text-secondary); line-height: 1; margin-top: -1px; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.8; white-space: nowrap;">powered
by aethercodesociety</span>
</div>
</a>
Expand Down
7 changes: 6 additions & 1 deletion public/team.html
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,12 @@

@media (max-width: 768px) {
.team-nav { padding: 16px 20px; }
.team-nav-links { display: none; }
.team-nav-links {
margin-left: auto;
}
.team-nav-links > a {
display: none !important;
}
.team-hero { padding: 60px 20px 40px; }
.team-stats { gap: 24px; flex-wrap: wrap; }
.team-cta { padding: 40px 24px; }
Expand Down