kortirion.uk/style.css

42 lines
641 B
CSS

body {
counter-reset: section;
margin: 5rem 1rem;
font-family: Georgia, 'Times New Roman', Times, serif;
}
h1,
h2 {
text-align: center;
font-size: 1em;
font-weight: normal;
font-style: italic;
margin: 1rem 0;
}
h2::before {
counter-increment: section;
content: counter(section, upper-roman);
display: block;
font-style: normal;
margin: 1rem 0;
}
.section {
max-width: 31rem;
margin: 2rem auto;
}
.verse {
max-width: 26rem;
margin-left: auto;
}
.line-indented {
padding-left: 1em;
}
.line {
display: inline-block;
margin-left: 2em;
text-indent: -2em;
}