MediaWiki:Common.css:修订间差异

来自DOLLARS
跳转到导航 跳转到搜索
无编辑摘要
无编辑摘要
第32行: 第32行:


.col-3 {
.col-3 {
width: 25%;
}
.col-4 {
width: 33.3333%;
width: 33.3333%;
width: calc(100% / 3);
width: calc(100% / 3);
}
.col-6 {
width: 50%;
}
.col-12 {
width: 100%;
}
}



2016年3月5日 (六) 01:17的版本

/* 放置于这里的 CSS 将应用于所有皮肤 */
/* html {
	-webkit-filter:invert(100%);
	filter:invert(100%);
}
 
img {
	-webkit-filter:invert(100%);
	filter:invert(100%);
}
 
.wikiEditor-preview-spinner {
	-webkit-filter:invert(0%);
	filter:invert(0%);
} */

html {
	-webkit-text-size-adjust: none;
	-ms-text-size-adjust: none;
	text-size-adjust: none;
}

code, pre {
	font-family: Menlo, Consolas, monospace !important;
}

.col {
	float: left;
	box-sizing: border-box;
	padding: .6rem;
}

.col-3 {
	width: 25%;
}

.col-4 {
	width: 33.3333%;
	width: calc(100% / 3);
}

.col-6 {
	width: 50%;
}

.col-12 {
	width: 100%;
}

.col.gray { background: #f1f1f1; }
.col.yellow { background: #FDF5EB; }
.col.yellow { background: #EBF8FD; }

/* Custom styles copied from Wikipedia
   https://en.wikipedia.org/wiki/MediaWiki:Common.css
*/