MediaWiki:Common.css: Difference between revisions

From 3B Knowledge
Jump to navigation Jump to search
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
/* Remove Scroll Bar in Mobile*/
/* Remove Scroll Bar in Mobile*/
body {
body {
     overflow-y: hidden !important;
     overflow-y: auto !important;
}
}


Line 8: Line 8:
body {
body {
background-color: #fafafa;
background-color: #fafafa;
}
/* Match branding for post */
.mw-body {
    border: 1px hsl( 0,0%,82.7% ) solid;
    background: white;
    box-shadow: 0 0 5px hsl(0deg 0% 0% / 10%);
    border-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
}

Latest revision as of 09:39, 4 October 2022

/* CSS placed here will be applied to all skins */
/* Remove Scroll Bar in Mobile*/
body {
    overflow-y: auto !important;
}

/* Match background color to branding*/
body {
	background-color: #fafafa;
}

/* Match branding for post */
.mw-body {
    border: 1px hsl( 0,0%,82.7% ) solid;
    background: white;
    box-shadow: 0 0 5px hsl(0deg 0% 0% / 10%);
    border-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}