Skip to content

Commit 4461ebb

Browse files
committed
style: improve logo formatting and visual presentation
- Increase header logo size from 32px to 40px for better visibility - Add professional styling with subtle shadows and borders - Enhance hero section logo with larger size (96px) and better effects - Add hover animations for improved user interaction - Improve header layout with better spacing and minimum height - Add responsive sizing for mobile devices
1 parent 54863d4 commit 4461ebb

2 files changed

Lines changed: 31 additions & 6 deletions

File tree

_sass/_header.scss

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
display: flex;
1212
align-items: center;
1313
justify-content: space-between;
14-
padding: $spacing-md 0;
14+
padding: $spacing-lg 0;
15+
min-height: 60px;
1516
}
1617

1718
.site-title {
@@ -27,9 +28,20 @@
2728
}
2829

2930
.logo {
30-
width: 32px;
31-
height: 32px;
32-
margin-right: $spacing-sm;
31+
width: 40px;
32+
height: 40px;
33+
margin-right: $spacing-md;
34+
border-radius: $border-radius;
35+
box-shadow: 0 2px 8px rgba(50, 108, 229, 0.2);
36+
transition: transform 0.3s ease, box-shadow 0.3s ease;
37+
background-color: $white;
38+
border: 2px solid rgba(50, 108, 229, 0.1);
39+
40+
&:hover {
41+
transform: scale(1.1);
42+
box-shadow: 0 4px 12px rgba(50, 108, 229, 0.3);
43+
border-color: rgba(50, 108, 229, 0.2);
44+
}
3345
}
3446
}
3547

_sass/_home.scss

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,21 @@
1414
margin-bottom: $spacing-lg;
1515

1616
img {
17-
width: 80px;
18-
height: 80px;
17+
width: 96px;
18+
height: 96px;
19+
border-radius: $border-radius-lg;
20+
box-shadow: 0 8px 24px rgba(50, 108, 229, 0.15);
21+
transition: transform 0.3s ease, box-shadow 0.3s ease;
22+
23+
&:hover {
24+
transform: translateY(-4px) scale(1.05);
25+
box-shadow: 0 12px 32px rgba(50, 108, 229, 0.25);
26+
}
27+
28+
@media (max-width: $breakpoint-md) {
29+
width: 80px;
30+
height: 80px;
31+
}
1932
}
2033
}
2134

0 commit comments

Comments
 (0)