Skip to content

Commit e3f155a

Browse files
done
1 parent 958db6c commit e3f155a

2 files changed

Lines changed: 43 additions & 21 deletions

File tree

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<link
1212
href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap"
1313
rel="stylesheet">
14-
14+
1515
<!-- Favicon -->
1616
<link rel="apple-touch-icon" sizes="180x180" href="favicon_io/apple-touch-icon.png">
1717
<link rel="icon" type="image/png" sizes="32x32" href="favicon_io/favicon-32x32.png">
@@ -59,8 +59,8 @@ <h3>Explorer</h3>
5959
<ion-icon name="logo-github"></ion-icon> Open Repository
6060
</a>
6161
<p class="copyright">
62-
Made with <ion-icon name="heart" class="heart-icon"></ion-icon> by <br>
63-
<a href="https://github.com/ParasGupta-BCA" target="_blank">Paras Gupta</a>
62+
Made with <ion-icon name="heart" class="heart-icon"></ion-icon> by <a
63+
href="https://github.com/ParasGupta-BCA" target="_blank">Paras Gupta</a>
6464
</p>
6565
</div>
6666
</aside>

style.css

Lines changed: 40 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -165,22 +165,25 @@ body {
165165
}
166166

167167
.sidebar-footer {
168-
padding: 20px;
168+
padding: 15px 20px;
169169
border-top: 1px solid var(--glass-border);
170+
display: flex;
171+
flex-direction: column;
172+
gap: 10px;
170173
}
171174

172175
.github-link {
173176
display: flex;
174177
align-items: center;
175178
justify-content: center;
176-
gap: 10px;
179+
gap: 8px;
177180
width: 100%;
178-
padding: 12px;
181+
padding: 8px;
179182
background: rgba(255, 255, 255, 0.03);
180183
color: var(--text-main);
181184
text-decoration: none;
182-
border-radius: 8px;
183-
font-size: 0.9rem;
185+
border-radius: 6px;
186+
font-size: 0.85rem;
184187
font-weight: 500;
185188
transition: all 0.3s;
186189
border: 1px solid var(--glass-border);
@@ -194,36 +197,55 @@ body {
194197
}
195198

196199
.copyright {
197-
margin-top: 15px;
198-
font-size: 0.75rem;
200+
margin-top: 0;
201+
font-size: 0.7rem;
199202
color: var(--text-muted);
200203
text-align: center;
201-
line-height: 1.6;
204+
line-height: 1;
205+
display: flex;
206+
align-items: center;
207+
justify-content: center;
208+
gap: 4px;
209+
white-space: nowrap;
202210
}
203211

204212
.copyright a {
205-
color: var(--primary);
213+
color: var(--text-muted);
206214
text-decoration: none;
207-
font-weight: 500;
215+
font-weight: 600;
216+
transition: color 0.2s;
208217
}
209218

210219
.copyright a:hover {
211-
text-decoration: underline;
220+
color: var(--primary);
212221
}
213222

214223
.heart-icon {
215224
color: #ed254e;
216-
font-size: 0.8rem;
217-
vertical-align: middle;
225+
font-size: 0.75rem;
218226
animation: heart-beat 1.5s infinite;
219227
}
220228

221229
@keyframes heart-beat {
222-
0% { transform: scale(1); }
223-
25% { transform: scale(1.2); }
224-
50% { transform: scale(1); }
225-
75% { transform: scale(1.2); }
226-
100% { transform: scale(1); }
230+
0% {
231+
transform: scale(1);
232+
}
233+
234+
25% {
235+
transform: scale(1.2);
236+
}
237+
238+
50% {
239+
transform: scale(1);
240+
}
241+
242+
75% {
243+
transform: scale(1.2);
244+
}
245+
246+
100% {
247+
transform: scale(1);
248+
}
227249
}
228250

229251
/* Main Area */

0 commit comments

Comments
 (0)