2,025
次編輯
無編輯摘要 |
無編輯摘要 |
||
| 行 97: | 行 97: | ||
} | } | ||
/* Context-specific link styles */ | |||
.mw-table td.warning a { | |||
color: #F5DEB3; /* Wheat for warning links */ | |||
} | |||
.mw-table td.warning a:hover { | |||
color: #FFD700; /* Gold for hover */ | |||
} | |||
.mw-table td.tips a { | |||
color: #EEE8AA; /* PaleGoldenrod for tips links */ | |||
} | |||
.mw-table td.tips a:hover { | |||
color: #F0E68C; /* Khaki for hover */ | |||
} | |||
.mw-table td.info a { | |||
color: #B0C4DE; /* LightSteelBlue for info links */ | |||
} | |||
.mw-table td.info a:hover { | |||
color: #5F9EA0; /* CadetBlue for hover */ | |||
} | |||
.mw-table td.error a { | |||
color: #FFB6C1; /* LightPink for error links */ | |||
} | |||
.mw-table td.error a:hover { | |||
color: #DC143C; /* Crimson for hover */ | |||
} | |||
.mw-table td.major-event a { | .mw-table td.major-event a { | ||
color: # | color: #F5FFFA; /* MintCream for major event links */ | ||
} | |||
.mw-table td.major-event a:hover { | |||
color: #00FF7F; /* SpringGreen for hover */ | |||
} | } | ||
.mw-table td.minor-event a { | .mw-table td.minor-event a { | ||
color: # | color: #2F4F4F; /* DarkSlateGray for minor event links */ | ||
} | |||
.mw-table td.minor-event a:hover { | |||
color: #4682B4; /* SteelBlue for hover */ | |||
} | } | ||
.mw-table td.historical-event a { | .mw-table td.historical-event a { | ||
color: # | color: #4B0082; /* Indigo for historical event links */ | ||
} | |||
.mw-table td.historical-event a:hover { | |||
color: #8A2BE2; /* BlueViolet for hover */ | |||
} | } | ||
.mw-table td.future-event a { | .mw-table td.future-event a { | ||
color: # | color: #8B4513; /* SaddleBrown for future event links */ | ||
} | |||
.mw-table td.future-event a:hover { | |||
color: #DAA520; /* GoldenRod for hover */ | |||
} | } | ||
/* Override and customize link styles */ | |||
.mw-table a { | .mw-table a { | ||
color: # | color: #3B5998; /* Rich blue for a Skyrim-like aesthetic */ | ||
text-decoration: none; /* Remove underline for links */ | text-decoration: none; /* Remove underline for links */ | ||
font-weight: bold; /* Make links more prominent */ | font-weight: bold; /* Make links more prominent */ | ||
| 行 122: | 行 172: | ||
.mw-table a:hover { | .mw-table a:hover { | ||
color: # | color: #1C4587; /* Darker blue for hover state */ | ||
text-decoration: none; /* Keep underline removed on hover */ | text-decoration: none; /* Keep underline removed on hover */ | ||
} | } | ||