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

Template page
No edit summary
No edit summary
Line 13: Line 13:
align-items: center;
align-items: center;
justify-content: center;
justify-content: center;
}
.placeholder-banner{
height:400px;
width:100%;
background-color:black;
}
}


Line 35: Line 41:


.portal-title{
.portal-title{
font-size:3rem;
font-size:4rem;
font-weight:100;
font-weight:100;
text-shadow:4px 4px 9px black;
text-shadow:4px 4px 9px black;

Revision as of 15:34, 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;
}

.placeholder-banner{
	height:400px;
	width:100%;
	background-color:black;
}

.portal-banner img{
	width:100%;
	height:inherit;
	z-index:1;
	position:relative;
	filter:blur(3px) ;
}

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

.portal-title{
	font-size:4rem;
	font-weight:100;
	text-shadow:4px 4px 9px black;
	position:relative;
	z-index:10;
}