MediaWiki:Mobile.css: Difference between revisions

From Delft Solutions
Jump to navigation Jump to search
(Created page with "→‎All CSS here will be loaded for users of the mobile site: #mw-head, #mw-panel { display: none; } #footer, #content { margin-left: 0; }")
 
(Make menu available on mobile)
Line 1: Line 1:
/* All CSS here will be loaded for users of the mobile site */
/* All CSS here will be loaded for users of the mobile site */


#mw-head, #mw-panel {
#mw-head {
display: none;
display: none;
}
#mw-panel {
position: relative;
    top: 0;
    width: 100%;
    background: beige;
    border-bottom: 1px solid black;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, .2);
}
}



Revision as of 15:19, 21 July 2024

/* All CSS here will be loaded for users of the mobile site */

#mw-head {
	display: none;
}

#mw-panel {
	position: relative;
    top: 0;
    width: 100%;
    background: beige;
    border-bottom: 1px solid black;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, .2);
}

#footer, #content {
	margin-left: 0;
}