MediaWiki:Common.css
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* HandWiki Stage top roll-down navigation */
#handwiki-topnav {
display: flex;
gap: 12px;
align-items: flex-start;
margin: 0 0 10px 0;
padding: 7px 10px;
background: #fff8cc;
border-bottom: 1px solid #e0d890;
font-size: 14px;
position: relative;
z-index: 10000;
}
#handwiki-topnav .handwiki-dropdown {
position: relative;
display: inline-block;
}
#handwiki-topnav .handwiki-dropdown-button {
display: block;
border: 1px solid #a2a9b1;
background: #ffffff;
color: #0645ad;
padding: 6px 12px;
min-width: 180px;
text-align: left;
font-weight: bold;
cursor: pointer;
}
#handwiki-topnav .handwiki-dropdown-content {
display: none;
position: absolute;
top: 100%;
left: 0;
z-index: 10001;
min-width: 230px;
background: #ffffff;
border: 1px solid #a2a9b1;
box-shadow: 0 2px 6px rgba(0,0,0,0.18);
padding: 6px 0;
}
#handwiki-topnav .handwiki-dropdown:hover .handwiki-dropdown-content {
display: block;
}
#handwiki-topnav .handwiki-dropdown-content a {
display: block;
padding: 6px 12px;
text-decoration: none;
white-space: nowrap;
}
#handwiki-topnav .handwiki-dropdown-content a:hover {
background: #eaecf0;
}