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

Template page
(Created page with ".portal-container{ padding:10px; border:1px gray solid; border-radius:3px; } .portal-container-half{ width:48%; } .portal-container-full{ width:100%; }")
 
No edit summary
Line 6: Line 6:


.portal-container-half{
.portal-container-half{
width:48%;
width:49%;
}
}


.portal-container-full{
.portal-container-full{
width:100%;
width:100%;
}
@media only screen and (max-width:768px){
.portal-container-half{
width:100%;
}
}
}

Revision as of 16:13, 3 November 2023

.portal-container{
	padding:10px;
	border:1px gray solid;
	border-radius:3px;
}

.portal-container-half{
	width:49%;
}

.portal-container-full{
	width:100%;
}

@media only screen and (max-width:768px){
	.portal-container-half{
		width:100%;
	}
}