(Created page with "→CSS placed here will be applied to all skins: a:visited { color: #d9832e; }") |
|||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* unvisited link */ | |||
a:link { | |||
color: green; | |||
} | |||
/* visited link */ | |||
a:visited { | a:visited { | ||
color: | color: green; | ||
} | |||
/* mouse over link */ | |||
a:hover { | |||
color: red; | |||
} | |||
/* selected link */ | |||
a:active { | |||
color: yellow; | |||
} | } | ||
Revision as of 18:10, 14 December 2019
/* CSS placed here will be applied to all skins */
/* unvisited link */
a:link {
color: green;
}
/* visited link */
a:visited {
color: green;
}
/* mouse over link */
a:hover {
color: red;
}
/* selected link */
a:active {
color: yellow;
}