User:盐棋/Sandbox.css:修订间差异

来自Arcaea中文维基
(修复样式,todo:竖直居中、等级NS、labeltext间距、datecov不换行、figure未填充)
(适配etr)
第18行: 第18行:
box-sizing: border-box;
box-sizing: border-box;
overflow-wrap: break-word;
overflow-wrap: break-word;
}
.infotable .main>* {
padding: 5px;
}
.infotable span.label {
padding: 1px 5px 1px 5px;
margin: 0 5px 0 5px;
}
}


第36行: 第45行:
"main";
"main";
}
}
}
.header,
.figure,
.main>* {
padding: 5px 5px;
}
}


/* 设置 grid area */
/* 设置 grid area */
.header {
.infotable .header {
grid-area: header;
grid-area: header;
font-size: large;
padding: 7px 10px;
height: auto !important;
height: auto !important;
}
}


.main {
.infotable .main {
grid-area: main;
grid-area: main;
display: grid;
display: grid;
grid-template-columns: 1fr repeat(3, 2fr);
}
}


.figure {
.infotable .figure {
grid-area: figure;
grid-area: figure;
justify-self: center;
padding: 9px 5px;
align-self: center;
}
}


span.bg-c {
.place-central {
padding: 1px 5px 1px 5px;
display: flex;
margin: 0 5px 0 5px;
justify-content: center;
align-items: center;
}
}


第78行: 第80行:
.infotable.colorless .bg-c {
.infotable.colorless .bg-c {
background-color: #f4d2f8;
background-color: #f4d2f8;
}
.fs-m {
font-size: medium;
}
.fs-l {
font-size: large;
}
.repeat-1 {
grid-template-columns: 1fr repeat(1, 2fr);
}
.repeat-3 {
grid-template-columns: 1fr repeat(3, 2fr);
}
.repeat-4 {
grid-template-columns: 1fr repeat(4, 2fr);
}
.repeat-5 {
grid-template-columns: 1fr repeat(5, 2fr);
}
}


第88行: 第114行:
}
}


.span-2 {
.gc-s2 {
grid-column: span 2;
grid-column: span 2;
}
}


.span-3 {
.gc-s3 {
grid-column: span 3;
grid-column: span 3;
}
}


.span-4 {
.gc-s4 {
grid-column: span 4;
grid-column: span 4;
}
}


.span-5 {
.gc-s5 {
grid-column: span 5;
grid-column: span 5;
}
.gr-s2 {
grid-row: span 2;
}
}

2024年3月13日 (三) 03:08的版本

.infotable {
	max-width: 100%;
	display: grid;
	grid-template-columns: auto min-content;
	margin: 1em 0 2em;
	font-size: small;
	line-height: 1.5em;
	text-align: center;
	background-color: #f8f8f8;
	overflow: auto hidden;
	position: relative;
}

.infotable,
.infotable>*,
.infotable .main>* {
	outline: 1px solid #eee;
	box-sizing: border-box;
	overflow-wrap: break-word;
}

.infotable .main>* {
	padding: 5px;
}

.infotable span.label {
	padding: 1px 5px 1px 5px;
	margin: 0 5px 0 5px;
}

/* 媒体查询 */
@media (min-width: 720px) {
	.infotable {
		grid-template-areas:
			"header header"
			"main figure";
	}
}

@media (max-width: 720px) {
	.infotable {
		grid-template-areas:
			"header"
			"figure"
			"main";
	}
}

/* 设置 grid area */
.infotable .header {
	grid-area: header;
	padding: 7px 10px;
	height: auto !important;
}

.infotable .main {
	grid-area: main;
	display: grid;
}

.infotable .figure {
	grid-area: figure;
	padding: 9px 5px;
}

.place-central {
	display: flex;
	justify-content: center;
	align-items: center;
}

.infotable.light .bg-c {
	background-color: lightskyblue;
}

.infotable.conflict .bg-c {
	background-color: #b99afd;
}

.infotable.colorless .bg-c {
	background-color: #f4d2f8;
}

.fs-m {
	font-size: medium;
}

.fs-l {
	font-size: large;
}

.repeat-1 {
	grid-template-columns: 1fr repeat(1, 2fr);
}

.repeat-3 {
	grid-template-columns: 1fr repeat(3, 2fr);
}

.repeat-4 {
	grid-template-columns: 1fr repeat(4, 2fr);
}

.repeat-5 {
	grid-template-columns: 1fr repeat(5, 2fr);
}

.gc-1 {
	grid-column: 1/-1;
}

.gc-2 {
	grid-column: 2/-1;
}

.gc-s2 {
	grid-column: span 2;
}

.gc-s3 {
	grid-column: span 3;
}

.gc-s4 {
	grid-column: span 4;
}

.gc-s5 {
	grid-column: span 5;
}

.gr-s2 {
	grid-row: span 2;
}