60 lines
1.1 KiB
SCSS
60 lines
1.1 KiB
SCSS
.season-5 {
|
|
--newspaper-background-texture-image: url(../images/parchment.jpg);
|
|
--newspaper-headline-font: 'Noticia Text';
|
|
--newspaper-base-font: 'EB Garamond';
|
|
--newspaper-name-font: 'UnifrakturCook';
|
|
|
|
section.prologue {
|
|
font-family: var(--newspaper-base-font);
|
|
padding: 20px;
|
|
border: black solid 1 px;
|
|
border-radius: 10px;
|
|
background: var(--newspaper-background-texture-image);
|
|
text-align: justify;
|
|
|
|
p {
|
|
columns: 2;
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
text-align: center;
|
|
}
|
|
|
|
// Newspaper Name
|
|
h1:first-child {
|
|
text-align: center;
|
|
font-family: var(--newspaper-name-font);
|
|
margin: inherit;
|
|
column-count: 1;
|
|
font-size: 5em;
|
|
margin: 8px;
|
|
text-align: center;
|
|
}
|
|
|
|
// Newspaper Tagline
|
|
h1:first-child + p {
|
|
columns: 1;
|
|
text-align: center;
|
|
font-style: italic;
|
|
border: solid;
|
|
margin: 0;
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
// Headline
|
|
h1 ~ h1 {
|
|
font-weight:bold;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
p:has(img) {
|
|
columns: 1;
|
|
text-align: center;
|
|
}
|
|
img {
|
|
height:400px;
|
|
}
|
|
|
|
}
|
|
|
|
} |