Difference between revisions of "User:Rayanth/WIP"
Line 11: | Line 11: | ||
==OVERALL WIKI WORKS IN PROGRESS== | ==OVERALL WIKI WORKS IN PROGRESS== | ||
− | Change Hyperlink colors for Preference page: | + | Change Hyperlink colors for Preference page:<br> |
− | <nowiki># | + | {{code|<nowiki>#</nowiki>preftoc a, |
− | <nowiki> | + | <nowiki>#</nowiki>preftoc a:active { |
− | + | display: inline-block; | |
− | + | position: relative; | |
− | + | color: orange; // Was <nowiki>#</nowiki>0645ad - a blue. hard to see on black. | |
− | + | padding: 0.5em; | |
− | <nowiki># | + | text-decoration: none; |
− | <nowiki> | + | background-image: none; |
− | <nowiki> | + | font-size: 0.9em; |
− | + | } | |
− | <nowiki> | + | <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
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; } |