-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b823e82
commit 39d77c7
Showing
23 changed files
with
806 additions
and
268 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,166 +1,7 @@ | ||
/* Split Layout for Landing Page */ | ||
.split-layout { | ||
display: flex; | ||
height: 100vh; | ||
background: var(--surface); | ||
overflow: hidden; | ||
} | ||
|
||
/* Branding Section (Left) */ | ||
.branding-section { | ||
flex: 0 0 var(--branding-width); | ||
background: var(--background); | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
padding: 32px; | ||
} | ||
|
||
.branding-content { | ||
text-align: center; | ||
max-width: 420px; | ||
} | ||
|
||
.logo { | ||
margin-bottom: 24px; | ||
filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1)); | ||
} | ||
|
||
.logo img { | ||
width: 245px; /* Half of original 490px width */ | ||
height: auto; | ||
display: block; | ||
margin: 0 auto; | ||
} | ||
|
||
.branding-content h1 { | ||
font-size: 48px; | ||
font-weight: 800; | ||
color: var(--text); | ||
margin-bottom: 16px; | ||
letter-spacing: -0.02em; | ||
} | ||
|
||
.tagline { | ||
font-size: 20px; | ||
line-height: 1.4; | ||
color: var(--text-secondary); | ||
margin: 0 auto; | ||
max-width: 360px; | ||
} | ||
|
||
/* Content Section (Right) */ | ||
.content-section { | ||
flex: 0 0 var(--content-width); | ||
background: var(--surface); | ||
display: flex; | ||
flex-direction: column; | ||
height: 100vh; | ||
} | ||
|
||
.content-wrapper { | ||
max-width: 720px; | ||
margin: 0 auto; | ||
padding: 32px; | ||
width: 100%; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
height: 100%; | ||
gap: 32px; | ||
} | ||
|
||
/* Landing Content */ | ||
.landing-content { | ||
max-width: 800px; | ||
margin: 0 auto; | ||
padding: var(--spacing-xl); | ||
text-align: center; | ||
min-height: 100vh; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
gap: var(--spacing-xl); | ||
} | ||
|
||
.landing-header h1 { | ||
font-size: 2.5rem; | ||
margin-bottom: var(--spacing-md); | ||
} | ||
|
||
.feature-card h3 { | ||
color: var(--primary); | ||
margin-bottom: var(--spacing-sm); | ||
} | ||
|
||
/* Responsive Layout */ | ||
@media (max-width: 1200px) { | ||
.content-wrapper { | ||
padding: 24px; | ||
} | ||
} | ||
|
||
@media (max-width: 1024px) { | ||
.split-layout { | ||
flex-direction: column; | ||
height: auto; | ||
min-height: 100vh; | ||
} | ||
|
||
.branding-section, | ||
.content-section { | ||
flex: 0 0 auto; | ||
width: 100%; | ||
height: auto; | ||
} | ||
|
||
.branding-section { | ||
padding: 48px 24px; | ||
} | ||
|
||
.content-wrapper { | ||
padding: 32px 24px; | ||
gap: 32px; | ||
} | ||
|
||
.branding-content { | ||
max-width: 100%; | ||
} | ||
|
||
.tagline { | ||
max-width: 480px; | ||
} | ||
} | ||
|
||
@media (max-width: 768px) { | ||
.landing-content { | ||
padding: var(--spacing-md); | ||
} | ||
|
||
.logo img { | ||
width: 200px; | ||
} | ||
} | ||
|
||
@media (max-width: 480px) { | ||
.branding-section { | ||
padding: 32px 20px; | ||
} | ||
|
||
.content-wrapper { | ||
padding: 24px 20px; | ||
} | ||
|
||
.logo img { | ||
width: 160px; | ||
} | ||
|
||
.branding-content h1 { | ||
font-size: 36px; | ||
margin-bottom: 12px; | ||
} | ||
|
||
.tagline { | ||
font-size: 18px; | ||
} | ||
} | ||
/* Landing Page Styles - Split into modular files */ | ||
@import 'landing/layout.landing.css'; | ||
@import 'landing/branding.landing.css'; | ||
@import 'landing/features.landing.css'; | ||
@import 'landing/auth.landing.css'; | ||
@import 'landing/theme-toggle.landing.css'; | ||
@import 'landing/responsive.landing.css'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* Auth Section */ | ||
.bsky-connect { | ||
padding: 32px; | ||
background: var(--background); | ||
border-radius: 12px; | ||
margin-bottom: 96px; | ||
position: relative; | ||
} | ||
|
||
.bsky-connect:after { | ||
content: ""; | ||
position: absolute; | ||
bottom: -48px; | ||
left: 50%; | ||
transform: translateX(-50%); | ||
width: 64px; | ||
height: 4px; | ||
background: var(--primary); | ||
border-radius: 2px; | ||
opacity: 0.3; | ||
} | ||
|
||
.sign-in-title { | ||
font-size: 24px; | ||
font-weight: 700; | ||
margin-bottom: 24px; | ||
color: var(--text); | ||
} | ||
|
||
.bsky-auth-message { | ||
color: var(--text-secondary); | ||
margin-bottom: 16px; | ||
font-size: 16px; | ||
line-height: 1.5; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/* Branding Section (Left) */ | ||
.branding-section { | ||
flex: 0 0 var(--branding-width); | ||
background: var(--background); | ||
position: sticky; | ||
top: 0; | ||
height: 100vh; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
padding: 32px; | ||
} | ||
|
||
.branding-content { | ||
text-align: center; | ||
max-width: 420px; | ||
} | ||
|
||
.logo { | ||
margin-bottom: 24px; | ||
filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1)); | ||
} | ||
|
||
.logo img { | ||
width: 245px; | ||
height: auto; | ||
display: block; | ||
margin: 0 auto; | ||
} | ||
|
||
.branding-content h1 { | ||
font-size: 48px; | ||
font-weight: 800; | ||
color: var(--text); | ||
margin-bottom: 16px; | ||
letter-spacing: -0.02em; | ||
} | ||
|
||
.tagline { | ||
font-size: 20px; | ||
line-height: 1.4; | ||
color: var(--text-secondary); | ||
margin: 0 auto; | ||
max-width: 360px; | ||
} | ||
|
||
/* Built by Section */ | ||
.built-by-section { | ||
text-align: center; | ||
margin-top: 64px; | ||
padding-top: 32px; | ||
border-top: 1px solid var(--border); | ||
} | ||
|
||
.built-by-content { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
gap: 16px; | ||
} | ||
|
||
.built-by-content p { | ||
font-size: 16px; | ||
line-height: 1.5; | ||
color: var(--text-secondary); | ||
margin: 0; | ||
} | ||
|
||
.built-by-content a { | ||
color: var(--primary); | ||
text-decoration: none; | ||
transition: color 0.2s ease; | ||
} | ||
|
||
.built-by-content a:hover { | ||
color: var(--primary-hover); | ||
} |
Oops, something went wrong.