User:Blackwolfe/timeless.css: Difference between revisions
From IdleOn MMO Wiki
imported>Blackwolfe No edit summary |
imported>Blackwolfe No edit summary |
||
Line 5: | Line 5: | ||
color:white; | color:white; | ||
} | |||
/* unvisited link */ | |||
a:link { | |||
color: red; | |||
} | } | ||
a { | /* visited link */ | ||
a:visited { | |||
color: green; | |||
} | |||
/* mouse over link */ | |||
a:hover { | |||
color: hotpink; | color: hotpink; | ||
} | |||
/* selected link */ | |||
a:active { | |||
color: blue; | |||
} | } |
Revision as of 08:05, 25 November 2020
#mw-site-navigation .sidebar-chunk {
background: #858585;
box-shadow: 2px 2px 1px rgba(0,0,0,0.5);
border-radius: 10px;
color:white;
}
/* unvisited link */
a:link {
color: red;
}
/* visited link */
a:visited {
color: green;
}
/* mouse over link */
a:hover {
color: hotpink;
}
/* selected link */
a:active {
color: blue;
}