36 lines
586 B
CSS
36 lines
586 B
CSS
@charset "utf-8";
|
|
@namespace epub "http://www.idpf.org/2007/ops";
|
|
|
|
[epub|type~="z3998:poem"] p,
|
|
[epub|type~="z3998:song"] p{
|
|
text-align: left;
|
|
text-indent: 0;
|
|
}
|
|
|
|
[epub|type~="z3998:poem"] p > span,
|
|
[epub|type~="z3998:song"] p > span{
|
|
display: block;
|
|
text-indent: -1em;
|
|
padding-left: 1em;
|
|
}
|
|
|
|
[epub|type~="z3998:poem"] p > span + br,
|
|
[epub|type~="z3998:song"] p > span + br{
|
|
display: none;
|
|
}
|
|
|
|
[epub|type~="z3998:poem"] + p,
|
|
[epub|type~="z3998:song"] + p{
|
|
text-indent: 0;
|
|
}
|
|
|
|
p span.i1{
|
|
text-indent: -1em;
|
|
padding-left: 2em;
|
|
}
|
|
|
|
p span.i2{
|
|
text-indent: -1em;
|
|
padding-left: 3em;
|
|
}
|