Hello Fabio,
Thank you for the clarifications.
If you are targeting the links inside the page/post contents, then perhaps you can use this code:
.entry-content a.link {
transition: color .4s;
color: #265C83;
}
.entry-content a.link:link,
.entry-content a.link:visited { color: #265C83; }
.entry-content a.link:hover { color: #7FDBFF; }
.entry-content a.link:active {
transition: color .3s;
color: #007BE6;
}
.entry-content .link { text-decoration: none; }
And if you are using Pro Editor and made the links inside a text element, then this code will help:
.x-text:not(.x-text-headline) a.link {
transition: color .4s;
color: #265C83;
}
.x-text:not(.x-text-headline) a.link:link,
.x-text:not(.x-text-headline) a.link:visited { color: #265C83; }
.x-text:not(.x-text-headline) a.link:hover { color: #7FDBFF; }
.x-text:not(.x-text-headline) a.link:active {
transition: color .3s;
color: #007BE6;
}
.x-text:not(.x-text-headline) .link { text-decoration: none; }
We would love to know if this has worked for you. Thank you.