Skip to content

Commit 834ea7d

Browse files
jwilgerclaude
andauthored
style: remove logo backgrounds and increase logo sizes by 25% (#118)
## Summary - Removed colored backgrounds from logo containers for cleaner appearance - Increased all logo sizes by 25% for better visibility - Removed shadow effects since backgrounds were removed ## Changes Made - Base logo: 40px → 50px - Nav logo container: 60px → 75px - Hero logo max size: 300px → 375px - Footer logo: 30px → 37.5px 🤖 Generated with [Claude Code](https://claude.ai/code) --------- Co-authored-by: Claude <noreply@anthropic.com>
1 parent 8a2dd72 commit 834ea7d

File tree

1 file changed

+11
-35
lines changed

1 file changed

+11
-35
lines changed

docs/assets/css/style.css

Lines changed: 11 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555

5656
/* Component dimensions */
5757
--floating-card-size: 350px;
58-
--hero-logo-max-size: 300px;
58+
--hero-logo-max-size: 375px; /* Increased by 25% from 300px */
5959

6060
/* Gradient effects */
6161
--gradient-blur-size: 8px;
@@ -114,35 +114,22 @@ body {
114114
}
115115

116116
.logo {
117-
width: 40px;
118-
height: 40px;
117+
width: 50px; /* Increased by 25% from 40px */
118+
height: 50px; /* Increased by 25% from 40px */
119119
animation: float 3s ease-in-out infinite;
120120
}
121121

122122
.nav-brand .logo-container {
123-
width: 60px;
124-
height: 60px;
123+
width: 75px; /* Increased by 25% from 60px */
124+
height: 75px; /* Increased by 25% from 60px */
125125
position: relative;
126-
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
127-
border-radius: 8px;
128-
}
129-
130-
.nav-brand .logo-container::before {
131-
content: '';
132-
position: absolute;
133-
inset: var(--gradient-inset-negative-large);
134-
background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
135-
border-radius: 8px;
136-
z-index: -1;
137-
opacity: 0.8;
138-
filter: blur(6px);
126+
/* Removed colored background and shadow */
139127
}
140128

141129
.nav-brand .logo {
142130
width: 100%;
143131
height: 100%;
144-
border-radius: 8px;
145-
padding: 4px;
132+
/* Removed border-radius and padding since no background */
146133
animation: none;
147134
position: relative;
148135
z-index: 1;
@@ -344,10 +331,10 @@ body {
344331
}
345332

346333
.floating-card {
347-
background-color: var(--bg-surface);
334+
/* Removed colored background */
348335
border-radius: 20px;
349336
padding: 0;
350-
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
337+
/* Removed shadow since no background */
351338
animation: float 4s ease-in-out infinite;
352339
position: relative;
353340
width: var(--floating-card-size);
@@ -357,17 +344,6 @@ body {
357344
align-items: center;
358345
}
359346

360-
.floating-card::before {
361-
content: '';
362-
position: absolute;
363-
inset: var(--gradient-inset-negative-large);
364-
background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
365-
border-radius: 20px;
366-
z-index: -1;
367-
opacity: 0.5;
368-
filter: blur(var(--gradient-blur-size-large));
369-
}
370-
371347
.hero-logo {
372348
width: 90%;
373349
height: 90%;
@@ -645,8 +621,8 @@ body {
645621
}
646622

647623
.footer-logo {
648-
width: 30px;
649-
height: 30px;
624+
width: 38px; /* Increased by 25% from 30px, rounded for browser compatibility */
625+
height: 38px; /* Increased by 25% from 30px, rounded for browser compatibility */
650626
opacity: 0.7;
651627
}
652628

0 commit comments

Comments
 (0)