Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
You must create an account or log in to edit.

Module:ScopeBox/styles.css: Difference between revisions

From Amaranth Legacy, available at amaranth-legacy.community
Content deleted Content added
No edit summary
No edit summary
Line 21: Line 21:
/* blur the background */
/* blur the background */
backdrop-filter: blur(4px);
backdrop-filter: blur(4px);
/* use the background as text color */
background-clip: text;
/* font settings */
/* font settings */
font-family: var(--font-family-serif) !important;
font-family: var(--font-family-serif) !important;

Revision as of 23:06, February 2, 2025

.template-ScopeBox {
	/* make sure this displays correctly */
	display: inline-block;
	/* fill the entire width of the container */
	width: 100%;
	/* center the text */
	text-align: center;
	/* background image */
	background-position: left;
	background-clip: padding-box;
	background-color: transparent;
	background-repeat: no-repeat;
	background-size: cover;
}

.template-ScopeBox a {
	/* make sure this displays correctly */
	display: inline-block;
	/* fill the entire width of the container */
	width: 100%;
	/* blur the background */
	backdrop-filter: blur(4px);
	/* font settings */
	font-family: var(--font-family-serif) !important;
	font-size: 275% !important;
}