Template:Spec.css: Difference between revisions

From pronounmail wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 7: Line 7:
font-stretch: 75%;
font-stretch: 75%;
font-style: italic;
font-style: italic;
font-size: 12vw;
font-size: clamp(2rem, 12vw, 12rem);
font-family: 'Besley', serif !important;
font-family: 'Besley', serif !important;
colour: var(--colour-grey-900);
color: var(--colour-weezer-800);
margin-bottom: .25em;
border: none;
border: none;
&::after {
display: block;
font-size: 0.8rem;
text-transform: uppercase;
font-stretch: 100%;
font-style: normal;
font-weight: 500;
margin-top: .5rem;
letter-spacing: 9%;
color: var(--colour-grey-600);
}
}
}
#mw-content-text {
#mw-content-text {

Revision as of 02:03, 26 February 2025

#content {
	  font-family: 'Besley', serif !important;
}
#firstHeading {
	font-weight: 400;
	text-align: center;
	font-stretch: 75%;
	font-style: italic;
	font-size: clamp(2rem, 12vw, 12rem);
	font-family: 'Besley', serif !important;
	color: var(--colour-weezer-800);
	margin-bottom: .25em;
	border: none;
	
	&::after {
		display: block;
		font-size: 0.8rem;
		text-transform: uppercase;
		font-stretch: 100%;
		font-style: normal;
		font-weight: 500;
		margin-top: .5rem;
		letter-spacing: 9%;
		color: var(--colour-grey-600);
	}
}
#mw-content-text {
  font-family: 'Besley', serif !important;
  max-width: 56rem;
  margin: auto;
}
span.required, .required code {
color: var(--colour-bubblegum-700);
}

span.optional, .optional code {
color: var(--colour-ectoplasm-700);
}

span.multiple, .multiple code {
color: var(--colour-yellow-700);
}

ul {
  list-style-type: "❊ ";
  list-style-image: none;
}

.must { color: var(--colour-bubblegum-700); font-weight: bold; }
.mustnt { color: var(--colour-aubergine-700); font-weight: bold; }
.should { color: var(--colour-orange-700); font-weight: bold; }
.shouldnt { color: var(--colour-weezer-700); font-weight: bold; }
.may { color: var(--colour-ectoplasm-700); font-weight: bold; }