Skip to content

Commit bc40cc2

Browse files
committed
Fix print.css stylesheet for print version
The print.css stylesheet was updated to adjust the size of the root element and the font size for the verse:before selector. These changes were made to improve the styling and layout specifically for the print version of the document. The root element size was increased from 2.1vh to 2.3vh, and the font size for the verse:before selector was adjusted from .6em to .5em for better readability and aesthetics in the printed format.
1 parent a812474 commit bc40cc2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

print.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
:root { --size: 2.1vh; }
1+
:root { --size: 2.3vh; }
22

33
@font-face { font-family: greek; src: url(fonts/newathu.ttf); }
44
@font-face { font-family: mono; src: url(fonts/mono.ttf); }
@@ -33,7 +33,7 @@ book chapter:first-of-type verse[number="1"] { display: block; }
3333
book chapter:first-of-type verse[number="1"]::first-letter { font-size: 2.2em; float: left; line-height: 0.5em; }
3434
book chapter:first-of-type verse[number="1"]:before { display: none; }
3535
verse { display: inline; }
36-
verse:before { content: attr(number); font-family: mono; font-weight: 600; font-size: .6em; margin: 0 .5em; vertical-align: super; }
36+
verse:before { content: attr(number); font-family: mono; font-weight: 600; font-size: .5em; margin: 0 .5em; vertical-align: super; }
3737

3838
reference { font-family: mono; font-size: .6em; margin: 0 .5em; vertical-align: baseline; display: inline; }
3939

0 commit comments

Comments
 (0)