MediaWiki:Vector-light.css: Difference between revisions
Appearance
Cdjensen94 (talk | contribs) No edit summary |
Cdjensen94 (talk | contribs) No edit summary |
||
Line 320: | Line 320: | ||
flex-direction: column; | flex-direction: column; | ||
} | } | ||
} | |||
nav { | |||
display: block; /* Ensure it behaves as a block element */ | |||
margin: 10px 0; /* Add vertical spacing */ | |||
padding: 10px; /* Add inner spacing */ | |||
border-radius: 5px; /* Optional: rounded corners */ | |||
} | |||
/* Adjust navigation links inside nav */ | |||
nav a { | |||
margin-right: 10px; /* Space between links */ | |||
text-decoration: none; /* Remove underlines */ | |||
color: #007BFF; /* Link color */ | |||
} | |||
nav a:hover { | |||
text-decoration: underline; /* Hover effect */ | |||
} | } |