Jump to content

MediaWiki:Common.css: Difference between revisions

From Logic World Wiki
No edit summary
No edit summary
 
(82 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
code {
 
overflow-wrap:break-word !important;
/* LW Theming */
--lw-radius: 10px;
 
/* Styling of generic tabs */
.vector-tab-noicon {
    border: 3px solid #f00;
    border-radius: var(--lw-radius) 0px;
    background-color: #444;
    padding: 0px 8px 0px 8px;
}
 
/* Main content */
.vector-body {
    border: 3px solid #f00;
    border-radius: var(--lw-radius);
    background-color: #444;
    padding: 10px;
}
}

Latest revision as of 12:54, 20 November 2025

code {
	overflow-wrap:break-word !important;
}