MediaWiki:Vector-medium.css: Difference between revisions
Appearance
Cdjensen94 (talk | contribs) No edit summary |
Cdjensen94 (talk | contribs) No edit summary |
||
(3 intermediate revisions by the same user not shown) | |||
Line 313: | Line 313: | ||
flex-direction: column; | flex-direction: column; | ||
} | } | ||
} | |||
nav { | |||
display: block; /* Ensure it behaves as a block element */ | |||
/*margin: 10px 0; Add vertical spacing */ | |||
padding-left: 10px; | |||
margin-top: 10px; /* Add vertical 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 */ | |||
} | } |