-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobals.css
More file actions
88 lines (73 loc) · 1.63 KB
/
globals.css
File metadata and controls
88 lines (73 loc) · 1.63 KB
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
87
88
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
/* US Letter page dimensions at 96 DPI (USCIS/Legal Document Standards) */
--page-width: 816px; /* 8.5 inches * 96 DPI */
--page-height: 1056px; /* 11 inches * 96 DPI */
--page-margin: 96px; /* Strict 1 inch margins */
--header-offset: 48px; /* 0.5 inch from top edge */
--footer-offset: 48px; /* 0.5 inch from bottom edge */
--content-width: calc(var(--page-width) - 2 * var(--page-margin)); /* 624px (6.5 inches) */
--content-height: calc(var(--page-height) - 2 * var(--page-margin)); /* 864px (9 inches) */
}
body {
margin: 0;
padding: 0;
font-family: 'Times New Roman', Times, serif;
background-color: #ffffff;
}
/* Print styles - US Letter with USCIS margins */
@media print {
@page {
size: letter;
margin: 0;
}
body {
background-color: white;
margin: 0;
padding: 0;
}
.no-print {
display: none !important;
}
.page {
page-break-after: always;
box-shadow: none !important;
margin: 0 !important;
border: none !important;
width: 8.5in !important;
height: 11in !important;
padding: 1in !important;
}
.page:last-child {
page-break-after: auto;
}
.page-break {
display: none !important;
}
}
/* Tiptap Editor List Styles */
.ProseMirror ul,
.ProseMirror ol {
padding-left: 1.5rem;
margin: 0.5rem 0;
}
.ProseMirror ul {
list-style-type: disc;
}
.ProseMirror ol {
list-style-type: decimal;
}
.ProseMirror li {
margin: 0.25rem 0;
}
.ProseMirror li p {
margin: 0;
}
.ProseMirror ul ul {
list-style-type: circle;
}
.ProseMirror ul ul ul {
list-style-type: square;
}