MediaWiki:Mobile.css: Difference between revisions

From JJSWiki
Jump to navigation Jump to search
No edit summary
Tags: Mobile edit Mobile web edit
No edit summary
Tags: Mobile edit Mobile web edit
Line 3: Line 3:
body {
body {
     background-color: red;
     background-color: red;
    background: pink;
}
}


header {
header {
     background-color: blue;
     background-color: blue;
    background: purple;
}
}


footer {
footer {
     background-color: green;
     background-color: green;
    background: orange;
}
}

Revision as of 18:24, 20 April 2023

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

body {
    background-color: red;
    background: pink;
}

header {
    background-color: blue;
    background: purple;
}

footer {
    background-color: green;
    background: orange;
}