Common.css: Difference between revisions
MediaWiki interface page
More actions
Content deleted Content added
No edit summary Tag: Manual revert |
No edit summary |
||
| Line 8: | Line 8: | ||
a.new { |
a.new { |
||
color: #f72a57 !important; |
color: #f72a57 !important; |
||
} |
|||
/* Style the container to center the widget */ |
|||
.discord-widget-container { |
|||
display: flex; |
|||
justify-content: center; |
|||
align-items: center; |
|||
margin-top: 20px; |
|||
margin-bottom: 20px; |
|||
border: 2px solid #7289da; /* Discord blue border */ |
|||
border-radius: 8px; |
|||
background-color: #2f3136; /* Discord dark theme background */ |
|||
padding: 10px; |
|||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); |
|||
} |
|||
/* Style the iframe to fit within the container */ |
|||
.discord-widget-container iframe { |
|||
border-radius: 8px; |
|||
max-width: 100%; |
|||
height: auto; |
|||
} |
} |
||
Revision as of 03:20, 1 January 2025
/* CSS placed here will be applied to all skins */
.mw-page-title-namespace,
.mw-page-title-separator {
display: none !important; /* Hide elements completely */
margin: 0 !important;
padding: 0 !important;
}
a.new {
color: #f72a57 !important;
}
/* Style the container to center the widget */
.discord-widget-container {
display: flex;
justify-content: center;
align-items: center;
margin-top: 20px;
margin-bottom: 20px;
border: 2px solid #7289da; /* Discord blue border */
border-radius: 8px;
background-color: #2f3136; /* Discord dark theme background */
padding: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
/* Style the iframe to fit within the container */
.discord-widget-container iframe {
border-radius: 8px;
max-width: 100%;
height: auto;
}