MediaWiki:Common.css: Difference between revisions
MediaWiki interface page
More actions
No edit summary |
No edit summary |
||
| Line 15: | Line 15: | ||
} | } | ||
/* changes links and text to green */ | |||
.green-text a:visited { | .green-text a:visited { | ||
color:green; | color:green; | ||
} | } | ||
.green-text a:link { | .green-text a:link { | ||
color:green; | color:green; | ||
} | } | ||
.green-text style { | |||
color:green; | |||
} | |||
/* changes links and text to red */ | |||
.red-text a:visited { | .red-text a:visited { | ||
color:red; | color:red; | ||
} | } | ||
.red-text a:link { | .red-text a:link { | ||
color:red; | |||
} | |||
.red-text style { | |||
color:red; | color:red; | ||
} | } | ||
Revision as of 15:21, 30 March 2025
body {
background-color: #202122;
}
/* unvisited link */
/* gold */
a:link {
color: #FFD700;
}
/* visited link */
/* golden rod */
a:visited {
color: #DAA520;
}
/* changes links and text to green */
.green-text a:visited {
color:green;
}
.green-text a:link {
color:green;
}
.green-text style {
color:green;
}
/* changes links and text to red */
.red-text a:visited {
color:red;
}
.red-text a:link {
color:red;
}
.red-text style {
color:red;
}