Drop lots of legacy code. Support Python 3.7-3.11.
[librarian.git] / src / librarian / elements / poetry / wers_cd.py
1 # This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
3 #
4 from .wers import Wers
5
6 class WersCd(Wers):
7     def _txt_build_inner(self, builder):
8         builder.push_text(' ' * 24, prepared=True)
9         super(WersCd, self)._txt_build_inner(builder)
10
11     HTML_ATTR = {
12         "style": "padding-left: 12em",
13     }
14
15     EPUB_ATTR = {
16         "style": "margin-left: 12em",
17     }