File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments