Difference between revisions of "D&D.css"

From All The Fallen Stories
Jump to navigation Jump to search
(Created page with "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:...")
 
Line 1: Line 1:
a{
a{
color: goldenrod;
color: gold;
transition: color 2s;
}
}
a:hover{
a:hover{
color: gold;
color: yellow;
}
}
a:visited{
a:visited{
color: khaki;
color: goldenrod;
transition: color 2s;
}
}
a:visited:hover{
a:visited:hover{
color: goldenrod;
color: gold;
}
}
a.new{
a.new{
color: red;
color: red;
transition: color 2s;
}
}
a.new:hover{
a.new:hover{
color: pink;
color: pink;
transition: color 2s;
}
}
a.new:visited{
a.new:visited{
color: darkred;
color: darkred;
transition: color 2s;
}
}
a.new:visited:hover{
a.new:visited:hover{
color: red;
color: red;

Revision as of 12:50, 13 March 2020

a{ color: gold; } a:hover{ color: yellow; } a:visited{ color: goldenrod; } a:visited:hover{ color: gold; } a.new{ color: red; } a.new:hover{ color: pink; } a.new:visited{ color: darkred; } a.new:visited:hover{ color: red; }

/* */