MediaWiki:Common.css: Difference between revisions
From Hidden Mickey Wiki
No edit summary Tag: Reverted |
No edit summary Tag: Reverted |
||
| Line 17: | Line 17: | ||
*/ | */ | ||
/* Style for the test menu | /* Style for the test menu | ||
div.test-menu { | div.test-menu { | ||
color: green; | color: green; | ||
font-weight: bold; | font-weight: bold; | ||
margin-left: 10px; | margin-left: 10px; | ||
} | } */ | ||
.dropbtn { | .dropbtn { | ||
Revision as of 14:12, 16 September 2025
/* CSS placed here will be applied to all skins */
/* Quote boxes */
blockquote { background-color: #e9ecef;padding: 5px;border-radius: 3px;font-style: italic;max-width: 860pt;word-wrap: break-word; }
blockquote cite { display: block;margin-top: 5px;font-size: 0.9em;color: #555;text-align: left; }
/* Disneyland fonts for the title bar; use larger font for desktop computers */
@font-face { font-family: 'Waltograph';src: url('/images/f/fb/Waltograph42.otf') format('opentype'); }
#p-logo a { font-family: 'Waltograph', sans-serif;font-size: 28px; }
@media (min-width: 768px) { #p-logo a { font-family: 'Waltograph', sans-serif;font-size: 42px; } }
/* Disable Discussion pages */
#ca-talk, .mw-indicator-talkpages { display: none !important; }
/* Change title bar, enables <title> to be different from display
@media (min-width: 768px) { .mw-desktop-sitename { visibility: hidden; position: relative; } }
@media (min-width: 768px) { .mw-desktop-sitename::after { content: "Hidden Mickey Wiki"; visibility: visible; position: absolute; top: 0; left: 0; } }
*/
/* Style for the test menu
div.test-menu {
color: green;
font-weight: bold;
margin-left: 10px;
} */
.dropbtn {
background-color: #3498DB;
color: white;
padding: 6px 10px;
font-size: 14px;
border: none;
cursor: pointer;
font-family: Arial, sans-serif;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: white;
min-width: 120px;
box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
z-index: 1000;
}
.dropdown-content a {
color: black;
padding: 8px 12px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {
background-color: #ddd;
}
.show {
display: block;
}