MediaWiki:Homepage.css: Difference between revisions

Jump to navigation Jump to search
No edit summary
No edit summary
Line 25: Line 25:
/* Information container within the boxes. */
/* Information container within the boxes. */
.infoSect {
.infoSect {
background:#fcfcfc;  
background: #fcfcfc;  
margin:1.2em 6px 3px;  
margin: 6px 6px;  
border: solid #eeeeee;  
border: solid #eeeeee;  
border-width: 1px 1px 0.2em;  
border-width: 1px 1px 0.2em;  
Line 35: Line 35:
/* Info container headers. */
/* Info container headers. */
.infoSect h2 {
.infoSect h2 {
margin:4px 0 1px;
margin: 4px 0 1px;
}
}

Revision as of 06:09, 11 January 2020

/* Container for the bottom section of the page. */
.btmCont {
	display: flex; 
	justify-content: space-around; 
	align-items: flex-start; 
	flex-flow: row-reverse wrap;
}

/* Container boxes for the right-side content. */
.rightBox {
	display: flex; 
	align-items: flex-start; 
	flex-flow: column nowrap; 
	flex: 1;
}

/* Container boxes for the left-side content. */
.leftBox {
	display: flex; 
	align-items: flex-start; 
	flex-flow: column nowrap; 
	flex: 3;
}

/* Information container within the boxes. */
.infoSect {
	background: #fcfcfc; 
	margin: 6px 6px; 
	border: solid #eeeeee; 
	border-width: 1px 1px 0.2em; 
	box-shadow: 0 1px 2px 1px rgba(0,0,0,0.02); 
	padding: 10px;
}

/* Info container headers. */
.infoSect h2 {
	margin: 4px 0 1px;
}