MediaWiki:Common.css: Difference between revisions

From Blue Archive Wiki
Jump to navigation Jump to search
Content added Content deleted
No edit summary
No edit summary
Line 12: Line 12:
background-color: #d9edfb;
background-color: #d9edfb;
color: #000000;
color: #000000;
}


/*** SkillTable and EXSkillTable ***/
table.skilltable {
width: 100%;
min-width: 575px;
max-width: 900px;
background-color: #ecf5f9;
}
table.skilltable tr.summary {
background-color:#d9edfb;
}
table.skilltable tr.summary td {
text-align:center;
}
@media (max-width: 1500px) {
table.skilltable {
width: calc(100% - 350px);
}
}
@media (max-width: 1200px) {
table.skilltable {
width: 100%;
clear: both;
}
}
}

Revision as of 08:55, 2 May 2021

/* CSS placed here will be applied to all skins */
table.batable {
    background-color: #ecf5f9;
}

table.batable th.mainheader {
    background-color: #2d4c72;
    color: #ffffff;
}

table.batable th.bigheader {
    background-color: #d9edfb;
    color: #000000;
}


/*** SkillTable and EXSkillTable ***/
table.skilltable {
	width: 100%;
	min-width: 575px;
	max-width: 900px;
	background-color: #ecf5f9;
}
table.skilltable tr.summary {
	background-color:#d9edfb;
}
table.skilltable tr.summary td {
	text-align:center;
}
@media (max-width: 1500px) {
	table.skilltable {
		width: calc(100% - 350px);
	}
}
@media (max-width: 1200px) {
	table.skilltable {
		width: 100%;
		clear: both;
	}
}