D&D.css
a{ color: goldenrod; transition: color 2s; } a:hover{ color: gold; } a:visited{ color: khaki; transition: color 2s; } a:visited:hover{ color: goldenrod; } a.new{ color: red; transition: color 2s; } a.new:hover{ color: pink; transition: color 2s; } a.new:visited{ color: darkred; transition: color 2s; } a.new:visited:hover{ color: red; }
/* */