Difference between revisions of "User:Rayanth/WIP"

From EVE University Wiki
Jump to: navigation, search
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;
 +
}
 +
}}

Revision as of 07:26, 1 July 2019

User:Rayanth/Sandbox For New Player Experience (Tutorial) 6/1/2019 Update : Due to several changes in the Agency in the May expansion, and a loss of data from when I started this, I need to start over.

User:Rayanth/SandboxTestingCodes where I test wiki markup code - can just ignore this thing.

https://docs.esi.evetech.net/docs/image_server.html

169240841_512.jpg

OVERALL WIKI WORKS IN PROGRESS

Change Hyperlink colors for Preference page:

#preftoc a,

#preftoc a:active { display: inline-block; position: relative; color: orange; // Was #0645ad - a blue. hard to see on black. padding: 0.5em; text-decoration: none; background-image: none; font-size: 0.9em; } #preftoc a:hover, #preftoc a:focus { text-decoration: underline; } #preftoc li.selected a { /* @embed */ background-image: url(images/preferences-fade.png); background-position: bottom; background-repeat: repeat-x; color: #888888; // Was #333333 - too dark. text-decoration: none; }