MediaWiki:Mobile.css: Difference between revisions

From Skulepedia
Jump to navigation Jump to search
(Created page with "→‎CSS placed here will affect users of the mobile site: table.infobox { display:table; } @media (min-width: 720px) { table.infobox { margin: 0.5em 0 1em 35px !impo...")
 
No edit summary
 
Line 2: Line 2:
table.infobox {
table.infobox {
     display:table;
     display:table;
    border: 1px solid #eaecf0;
    background-color: #f8f9fa;
    border-collapse: separate;
    border-spacing: 0.5em;
}
}



Latest revision as of 06:46, 3 September 2017

/* CSS placed here will affect users of the mobile site */
table.infobox {
    display:table;
    border: 1px solid #eaecf0;
    background-color: #f8f9fa;
    border-collapse: separate;
    border-spacing: 0.5em;
}

@media (min-width: 720px) {
table.infobox {
    margin: 0.5em 0 1em 35px !important;
    max-width: 320px;
    width: auto !important;
    float: right !important;
    clear: right !important;
}
}