Template:Portal banner/style.css: Difference between revisions

Template page
No edit summary
Tag: Manual revert
No edit summary
Line 26: Line 26:
width:100%;
width:100%;
height:400px;
height:400px;
background-color:transparent;
display:flex;
display:flex;
align-items:center;
align-items:center;

Revision as of 15:08, 3 November 2023

/*parent container*/
.portal-banner{
	width:100%;
	margin:0;
	overflow:hidden;
}

/*image container*/
.portal-banner-image{
	width:100%;
	height:400px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index:1;
}

.portal-banner img{
	width:100%;
	height:inherit;
}

/*text container*/
.portal-banner-content{
	margin-top:-400px;
	width:100%;
	height:400px;
	background-color:transparent;
	display:flex;
	align-items:center;
	justify-content:flex-start;
	padding-left:10px;
	z-index:10;
}

.portal-title{
	
}