MediaWiki:Mobile.css: Difference between revisions

From Our World of Text Wiki
Jump to navigation Jump to search
(Created page with "→‎All CSS here will be loaded for users of the mobile site: →‎Imported from wikipedia: .navbox { border: 1px solid #a2a9b1; width: 100%; box-sizing: border-box; margin: auto; clear: both; font-size: 88%; text-align: center; padding: 1px } .navbox-inner,.navbox-subgroup { width: 100% } .navbox-group,.navbox-title,.navbox-abovebelow { padding: 0.25em 1em; line-height: 1.5em; text-align: center } th.navbox-group {...")
 
No edit summary
Line 133: Line 133:
}
}
.mwBoxRow {
.mwBoxRow {
flex-direction: column; /* Mobile exclusive */
border-spacing: 8px;
border-spacing: 8px;
border: 1px solid;
border: 1px solid;
Line 152: Line 153:
padding: 0.2em 0.4em;
padding: 0.2em 0.4em;
}
}
 
.mwBoxRow > div { /* Mobile exclusive */
@media all and (max-width: 850px) {
width: auto !important;
.mwBoxRow {
flex-direction: column;
}
.mwBoxRow > div {
width: auto !important;
}
}
}

Revision as of 13:41, 7 September 2024

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

.navbox {
    border: 1px solid #a2a9b1;
    width: 100%;
    box-sizing: border-box;
    margin: auto;
    clear: both;
    font-size: 88%;
    text-align: center;
    padding: 1px
}

.navbox-inner,.navbox-subgroup {
    width: 100%
}

.navbox-group,.navbox-title,.navbox-abovebelow {
    padding: 0.25em 1em;
    line-height: 1.5em;
    text-align: center
}

th.navbox-group {
    white-space: nowrap;
    text-align: right
}

.navbox,.navbox-subgroup {
    background: #fdfdfd
}

.navbox-list {
    line-height: 1.8em;
    border-color: #fdfdfd
}

.navbox th,.navbox-title {
    background: #ccccff
}

.navbox-abovebelow,th.navbox-group,.navbox-subgroup .navbox-title {
    background: #ddddff
}

.navbox-subgroup .navbox-group,.navbox-subgroup .navbox-abovebelow {
    background: #e6e6ff
}

.navbox-even {
    background: #f7f7f7
}

.navbox-odd {
    background: transparent
}

table.navbox + table.navbox {
    margin-top: -1px
}

.navbox .hlist td dl,.navbox .hlist td ol,.navbox .hlist td ul,.navbox td.hlist dl,.navbox td.hlist ol,.navbox td.hlist ul {
    padding: 0.125em 0
}

ol + table.navbox,ul + table.navbox {
    margin-top: 0.5em
}

.navbar {
    display: inline;
    font-size: 88%;
    font-weight: normal
}

.navbar ul {
    display: inline;
    white-space: nowrap
}

.navbar li {
    word-spacing: -0.125em
}

.navbar.mini li span {
    font-variant: small-caps
}

.infobox .navbar {
    font-size: 100%
}

.navbox .navbar {
    display: block;
    font-size: 100%
}

.navbox-title .navbar {
    float: left;
    text-align: left;
    margin-right: 0.5em;
    width: 6em
}

/* Imported from an archive of wikipedia */

.navbox-title {
	background-color: #ccf
}

.navbox-abovebelow,.navbox-group,.navbox-subgroup .navbox-title {
	background-color: #ddf
}

.navbox-subgroup .navbox-group,.navbox-subgroup .navbox-abovebelow {
	background-color: #e6e6ff
}

.navbox-even {
	background-color: #f7f7f7
}

.navbox-odd {
	background-color: transparent
}

/*
	Main page boxes
*/
.mwBoxContainer {
	display: flex;
}
.mwBoxRow {
	flex-direction: column; /* Mobile exclusive */
	border-spacing: 8px;
	border: 1px solid;
	background: #F5F4FF;
	vertical-align: top;
	color: #000000;
	margin: 5px;
	padding: 8px;
}
.mwBoxHeader {
	font-family: Verdana;
	margin: 0;
	background: #E0DCFF;
	font-size: 120%;
	font-weight: bold;
	border: 1px solid #B8B5CF;
	text-align: left;
	color: #000000;
	padding: 0.2em 0.4em;
}
.mwBoxRow > div { /* Mobile exclusive */
	width: auto !important;
}