Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

User:Rayanth/WIP: Difference between revisions

From EVE University Wiki
Rayanth (talk | contribs)
No edit summary
Rayanth (talk | contribs)
Line 11: Line 11:
==OVERALL WIKI WORKS IN PROGRESS==
==OVERALL WIKI WORKS IN PROGRESS==


Change Hyperlink colors for Preference page:<br><br>
Change Hyperlink colors for Preference page:<br>
<nowiki>#preftoc li.selected a</nowiki><br>
{{code|<nowiki>#</nowiki>preftoc a,
<nowiki>{</nowiki><br>
<nowiki>#</nowiki>preftoc a:active {
<nowiki>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;# color #333333; # current. too dark.</nowiki><br>
display: inline-block;
<nowiki>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;color #888888;  # new. Much better</nowiki><br>
position: relative;
<nowiki>}</nowiki><br><br>
color: orange; // Was <nowiki>#</nowiki>0645ad - a blue. hard to see on black.
 
padding: 0.5em;
<nowiki>#preftoc li a</nowiki><br>
text-decoration: none;
<nowiki>{</nowiki><br>
background-image: none;
<nowiki>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;# current: doesn't exist, so links are blue.</nowiki><br>
font-size: 0.9em;
<nowiki>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;color: orange# WAAAY better.</nowiki><br>
}
<nowiki>}</nowiki><br>
<nowiki>#</nowiki>preftoc a:hover,
<nowiki>#</nowiki>preftoc a:focus {
text-decoration: underline;
}
<nowiki>#</nowiki>preftoc li.selected a {
/* @embed */
background-image: url(images/preferences-fade.png);
background-position: bottom;
background-repeat: repeat-x;
color: #888888;  // Was <nowiki>#</nowiki>333333 - too dark.
text-decoration: none;
}
}}