58 lines
784 B
SCSS
58 lines
784 B
SCSS
////////////////////
|
|
// //
|
|
// Texts //
|
|
// //
|
|
////////////////////
|
|
|
|
.verse {
|
|
line-height: $line-height-verse;
|
|
|
|
p {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
br {
|
|
margin-bottom: .5rem;
|
|
}
|
|
}
|
|
|
|
.main-header,
|
|
.main-footer {
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
.citation {
|
|
border: none;
|
|
margin-left: 0;
|
|
|
|
blockquote {
|
|
margin: 0;
|
|
margin-left: .5rem;
|
|
@include breakpoint(laptop) {
|
|
margin-left: 1rem;
|
|
}
|
|
border-left: solid $lighter-polar .5rem;
|
|
padding-left: .5rem;
|
|
|
|
@include breakpoint(laptop) {
|
|
padding-left: 1rem;
|
|
}
|
|
|
|
p {
|
|
text-align: left;
|
|
margin: .4rem 0;
|
|
}
|
|
|
|
em {
|
|
font-style: normal;
|
|
}
|
|
|
|
figcaption {
|
|
text-align: right;
|
|
margin-top: 1rem;
|
|
}
|
|
}
|
|
}
|