MediaWiki:Common.css: Difference between revisions

From Moral and Practical
Jump to navigation Jump to search
(Created page with "→‎CSS placed here will be applied to all skins: #content { max-width: 800px; →‎Or any value you prefer: margin: 0 auto; }")
 
No edit summary
Tag: Reverted
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
#content {
#content {
     max-width: 800px;  /* Or any value you prefer */
     max-width: 1000px;  /* Or any value you prefer */
     margin: 0 auto;
     margin: 0 auto;
}
}

Revision as of 21:33, 13 July 2023

/* CSS placed here will be applied to all skins */
#content {
    max-width: 1000px;  /* Or any value you prefer */
    margin: 0 auto;
}