No edit summary |
No edit summary Tag: Reverted |
||
Line 4: | Line 4: | ||
margin: 10px 0; | margin: 10px 0; | ||
font-size: 14px; | font-size: 14px; | ||
width: 100%; | |||
} | } | ||
.wikitable th, .wikitable td { | .wikitable th, .wikitable td { | ||
border: 1px solid # | border: 1px solid #a3c9e2; /* Light blue border */ | ||
padding: 8px; | padding: 8px; | ||
text-align: left; | text-align: left; | ||
background-color: # | background-color: #cce4f7; /* Light sky blue background */ | ||
color: | color: #333; /* Dark text color for readability */ | ||
} | } | ||
.wikitable th { | .wikitable th { | ||
background-color: # | background-color: #7fb7e8; /* Sky blue header */ | ||
font-weight: bold; | font-weight: bold; | ||
color: white; | color: white; | ||
} | |||
.wikitable tr:nth-child(even) { | |||
background-color: #e1f2fb; /* Very light sky blue for even rows */ | |||
} | } | ||
.wikitable tr:hover { | .wikitable tr:hover { | ||
background-color: # | background-color: #d0e7f9; /* Hover effect with slightly darker blue */ | ||
} | } |
Revision as of 20:14, 22 April 2025
/* Custom styles for wikitable */ .wikitable { border-collapse: collapse; margin: 10px 0; font-size: 14px; width: 100%; } .wikitable th, .wikitable td { border: 1px solid #a3c9e2; /* Light blue border */ padding: 8px; text-align: left; background-color: #cce4f7; /* Light sky blue background */ color: #333; /* Dark text color for readability */ } .wikitable th { background-color: #7fb7e8; /* Sky blue header */ font-weight: bold; color: white; } .wikitable tr:nth-child(even) { background-color: #e1f2fb; /* Very light sky blue for even rows */ } .wikitable tr:hover { background-color: #d0e7f9; /* Hover effect with slightly darker blue */ }