Template:GuidePage/Stylez.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 9: | Line 9: | ||
#content { | #content { | ||
background-color: var(--colour-theme-50) !important; | background-color: var(--colour-theme-50) !important; | ||
border-color: color-mix(in srgb, var(--colour-theme-800), transparent 70%); | |||
} | } | ||
Line 14: | Line 15: | ||
background-color: white; | background-color: white; | ||
padding: 1rem; | padding: 1rem; | ||
border-radius: | border-radius: 8px; | ||
margin: auto; | margin: auto; | ||
max-width: 48rem; | max-width: 48rem; |
Revision as of 19:14, 4 December 2024
*, *::before, *::after {
box-sizing: border-box;
}
#firstHeading {
display: none;
}
#content {
background-color: var(--colour-theme-50) !important;
border-color: color-mix(in srgb, var(--colour-theme-800), transparent 70%);
}
.guide {
background-color: white;
padding: 1rem;
border-radius: 8px;
margin: auto;
max-width: 48rem;
border: 1px solid color-mix(in srgb, var(--colour-theme-900), transparent 90%);
}
.guide-header {
height: 8rem;
display: grid;
grid-template-columns: 2fr 1fr;
align-items: end;
color: var(--colour-grey-900);
font-family: 'Nunito', sans-serif;
}
.guide-header h1 {
all: unset;
display: block;
font-weight: 1000;
font-size: 3.5rem;
color: var(--colour-theme-600);
}
.guide-header p {
grid-column: 1 / -1;
background-color: var(--colour-theme-600);
color: white;
text-transform: uppercase;
padding: .25rem .5rem;
font-size: .75rem;
font-weight: 500;
letter-spacing: 5%;
margin: 0;
}
.guide-header p a {
color: inherit;
font-weight: inherit;
}
.guide-main {
font-family: 'Nunito', sans-serif;
color: var(--colour-grey-900);
}
p.lede {
font-size: 1.15rem;
font-weight: 450;
color: var(--colour-grey-800);
text-wrap: balance;
}