Skip to content

Commit 9ee3261

Browse files
committed
feat: Align hero buttons and apply consistent dark styling
- Change GitHub and Resume buttons from btn-secondary/btn-outline to btn-dark - Create new btn-dark style with dark gray background (rgba(31, 41, 55, 0.95)) - Apply consistent styling to GitHub Projects and Download Resume buttons - Keep Get In Touch button with primary gradient (btn-primary) - All three buttons now properly aligned in hero section - Add hover effects with border glow and shadow for dark buttons
1 parent 4497ee3 commit 9ee3261

2 files changed

Lines changed: 17 additions & 2 deletions

File tree

css/style.css

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -538,6 +538,21 @@ ul {
538538
box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
539539
}
540540

541+
.btn-dark {
542+
background: rgba(31, 41, 55, 0.95);
543+
color: white;
544+
border: 2px solid rgba(255, 255, 255, 0.1);
545+
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
546+
}
547+
548+
.btn-dark:hover {
549+
background: rgba(31, 41, 55, 1);
550+
border-color: rgba(102, 126, 234, 0.5);
551+
transform: translateY(-3px);
552+
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
553+
color: white;
554+
}
555+
541556
.btn-large {
542557
padding: 1.25rem 3rem;
543558
font-size: 1.125rem;

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ <h2 class="hero-subtitle">Senior Health Economist</h2>
6868
</div>
6969
<div class="hero-buttons">
7070
<a href="#contact" class="btn btn-primary">Get In Touch</a>
71-
<a href="https://github.com/danribes/" class="btn btn-secondary" target="_blank" rel="noopener noreferrer">🔗 GitHub Projects</a>
72-
<a href="https://drive.google.com/file/d/1_syLG7xnnlKG63AipAUNYFiR4CaOWueQ/view?usp=drive_link" class="btn btn-outline" target="_blank" rel="noopener noreferrer">Download Resume</a>
71+
<a href="https://github.com/danribes/" class="btn btn-dark" target="_blank" rel="noopener noreferrer">🔗 GitHub Projects</a>
72+
<a href="https://drive.google.com/file/d/1_syLG7xnnlKG63AipAUNYFiR4CaOWueQ/view?usp=drive_link" class="btn btn-dark" target="_blank" rel="noopener noreferrer">Download Resume</a>
7373
</div>
7474
</div>
7575
<div class="hero-image">

0 commit comments

Comments
 (0)