Skip to content

Commit 958db6c

Browse files
done
1 parent cc533a5 commit 958db6c

2 files changed

Lines changed: 38 additions & 1 deletion

File tree

index.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,12 @@ <h3>Explorer</h3>
5656

5757
<div class="sidebar-footer">
5858
<a href="https://github.com/ParasGupta-BCA/PHP-Programs" target="_blank" class="github-link">
59-
<ion-icon name="open-outline"></ion-icon> View on GitHub
59+
<ion-icon name="logo-github"></ion-icon> Open Repository
6060
</a>
61+
<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>
64+
</p>
6165
</div>
6266
</aside>
6367

style.css

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,39 @@ body {
193193
box-shadow: var(--shadow-sm);
194194
}
195195

196+
.copyright {
197+
margin-top: 15px;
198+
font-size: 0.75rem;
199+
color: var(--text-muted);
200+
text-align: center;
201+
line-height: 1.6;
202+
}
203+
204+
.copyright a {
205+
color: var(--primary);
206+
text-decoration: none;
207+
font-weight: 500;
208+
}
209+
210+
.copyright a:hover {
211+
text-decoration: underline;
212+
}
213+
214+
.heart-icon {
215+
color: #ed254e;
216+
font-size: 0.8rem;
217+
vertical-align: middle;
218+
animation: heart-beat 1.5s infinite;
219+
}
220+
221+
@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); }
227+
}
228+
196229
/* Main Area */
197230
.main-editor {
198231
flex: 1;

0 commit comments

Comments
 (0)