Template:Main Page/styles.css: Difference between revisions

From Umamusume Wiki
Jump to navigation Jump to search
m (Kanade moved page Main Page/styles.css to Template:Main Page/styles.css without leaving a redirect)
m (Only show scrollbars in scroll class elements unless overflowing.)
Line 11: Line 11:
.scroll {
.scroll {
max-height:300px;
max-height:300px;
overflow:scroll;
overflow:auto;
}
}



Revision as of 12:17, 26 April 2024

.mainbox {
	flex:1;
	margin:5px;
	border:1px solid #CCC;
	box-shadow:0 2px 2px rgba(0,0,0,0.1);
	padding:0 10px 10px 10px;
	text-align:center;
	min-width:210px;
}

.scroll {
	max-height:300px;
	overflow:auto;
}

div.mainbox > div {
	border-top:1px solid #CCC;
	padding-top:0.5em;
}

.wrap {
	display:flex;
	flex-flow:row wrap;
}

.left {
	text-align:left;
}