Skip to content

Commit d52555c

Browse files
authored
Update style.css
1 parent 0f85bc7 commit d52555c

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

style.css

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,4 +185,34 @@ ul{list-style:none;}
185185
@media(max-width:780px){
186186
.grid-2{grid-template-columns:1fr;}
187187
}
188+
/* ===== Developer Credit Signature ===== */
189+
.dev-link {
190+
position: relative;
191+
color: var(--silver);
192+
font-weight: 700;
193+
text-decoration: none;
194+
transition: color 0.3s ease;
195+
}
196+
197+
.dev-link::after {
198+
content: "";
199+
position: absolute;
200+
bottom: -2px;
201+
left: 0;
202+
width: 0%;
203+
height: 2px;
204+
background: linear-gradient(90deg, var(--blue), var(--navy));
205+
transition: width 0.4s ease;
206+
border-radius: 2px;
207+
}
208+
209+
.dev-link:hover {
210+
color: var(--blue);
211+
text-shadow: 0 0 8px rgba(30, 99, 211, 0.6);
212+
}
213+
214+
.dev-link:hover::after {
215+
width: 100%;
216+
}
217+
188218

0 commit comments

Comments
 (0)