AxelSector's profile picture

Published by

published
updated

Category: Web, HTML, Tech

link decoration

<style>

a{
 color: (whatever color you'd like);
font-weight:bold;
}

a:hover{
 letter-spacing: 2px; 
 transition: .5s;
 color: (whatever color you'd like it to change to);
}

.links a:visited {
color: (whatever color you'd like) !important;}

-----------------------------------------------------

(or uppercase transition)

nav .links a:hover { color: (whatever color you'd like);
text-transform: uppercase;
font-style: ;
letter-spacing:0.7px;transition:.3s;
}

</style>


8 Kudos

Comments

Displaying 1 of 1 comments ( View all | Add Comment )

𝐻𝒜𝐼𝐿𝐸𝒴 𝒢𝐿𝒪𝒪𝑀𝐼𝐸

𝐻𝒜𝐼𝐿𝐸𝒴 𝒢𝐿𝒪𝒪𝑀𝐼𝐸's profile picture

thanx for the free CSS :D


Report Comment



No problem!! :D

by AxelSector; ; Report