मदद:Link color: रिवीजन सभ के बीचा में अंतर

Content deleted Content added
- फालतू सुरक्षा टेम्पलेट
छो Bot: Replace deprecated <source> tag and "enclose" parameter [https://lists.wikimedia.org/pipermail/wikitech-ambassadors/2020-April/002284.html]
 
लाइन 69:
Colors are defined by hexadecimal characters: see [[web colors]].
 
<sourcesyntaxhighlight lang="css">
/* standard link colors */
.mw-body-content a:link { color: #0000FF; } /* normal unvisited links */
लाइन 83:
.mw-body-content a:hover {color: #FF00FF}
.mw-body-content a:active {color: #0000FF}
</syntaxhighlight>
</source>
 
Notes:
लाइन 93:
 
Show redirects as green links:
<sourcesyntaxhighlight lang="css">
.mw-body-content a.mw-redirect {color:#308050}
.mw-body-content a.mw-redirect:visited {color:#3070A0}
</syntaxhighlight>
</source>
 
====External====
Show external links as green links:
<sourcesyntaxhighlight lang="css">
.mw-body-content a.external {color: #008000}
.mw-body-content a.external:visited {color: #008000}
</syntaxhighlight>
</source>
 
====Text decoration====
This allows formatting such as underlines. For example:
 
<sourcesyntaxhighlight lang="css">
.mw-body-content a:link {color: #000000; text-decoration: underline; }
</syntaxhighlight>
</source>
 
Possible values are:
लाइन 121:
This will change the link font:
 
<sourcesyntaxhighlight lang="css">
.mw-body-content a:link {font-family: monospace}
</syntaxhighlight>
</source>
 
====Preferences====