-
Notifications
You must be signed in to change notification settings - Fork 0
/
css.py
92 lines (78 loc) · 1.93 KB
/
css.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
from reportlab.lib.pagesizes import letter, landscape
from reportlab.platypus import SimpleDocTemplate, Paragraph, Image, Spacer, PageBreak, Frame, PageTemplate
from reportlab.lib.styles import getSampleStyleSheet,ParagraphStyle
from reportlab.lib import colors
from reportlab.lib.units import inch
from reportlab.pdfgen import canvas
heading_style = ParagraphStyle(
name='CustomStyle',
fontName='Helvetica-bold',
fontSize=25,
textColor=colors.black,
leading=14,
alignment=0, # Center alignment
spaceAfter=20,
)
subheading_style = ParagraphStyle(
name='CustomStyle',
fontName='Helvetica',
fontSize=10,
textColor=colors.blue,
leading=14,
alignment=0, # Center alignment
spaceAfter=10,
)
contact_style = ParagraphStyle(
name='CustomStyle',
fontName='Helvetica',
fontSize=10,
textColor=colors.black,
leading=14,
alignment=2, # Center alignment
spaceAfter=5,
)
paraheading_style = ParagraphStyle(
name='CustomStyle',
fontName='Helvetica-bold',
fontSize=14,
textColor=colors.black,
leading=14,
alignment=0, # Center alignment
spaceAfter=5,
)
normal_style = ParagraphStyle(
name='CustomStyle',
fontName='Helvetica',
fontSize=10,
textColor=colors.black,
leading=10,
alignment=0, # Center alignment
spaceAfter=10,
)
detHead1_style = ParagraphStyle(
name='CustomStyle',
fontName='Helvetica-bold',
fontSize=12,
textColor=colors.black,
leading=10,
alignment=0, # Center alignment
spaceAfter=5,
)
detHead2_style = ParagraphStyle(
name='CustomStyle',
fontName='Helvetica',
fontSize=8,
textColor=colors.black,
leading=0,
alignment=0, # Center alignment
spaceAfter=10,
)
detHead3_style = ParagraphStyle(
name='CustomStyle',
fontName='Helvetica',
fontSize=10,
textColor=colors.black,
leading=10,
alignment=0, # Center alignment
spaceAfter=10,
)