We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06764ff commit 3e2e654Copy full SHA for 3e2e654
1 file changed
exporters/html/html_export.py
@@ -575,18 +575,24 @@ def get_common_styles() -> str:
575
576
h1 {{
577
color: var(--selex-dark-blue);
578
- border-bottom: 2px solid var(--selex-middle-blue);
579
- padding-bottom: 10px;
+ padding: 20px 0 10px 0;
580
}}
581
582
h2 {{
583
584
border-bottom: 1px solid var(--selex-dark-grey);
585
- padding-bottom: 5px;
+ padding: 15px 0 5px 0;
586
587
588
- h3 {{ color: var(--selex-dark-blue); }}
589
- h4 {{ color: var(--selex-dark-blue); }}
+ h3 {{
+ color: var(--selex-dark-blue);
+ padding: 12px 0 8px 0;
590
+ }}
591
+
592
+ h4 {{
593
594
+ padding: 10px 0 6px 0;
595
596
597
/* Markdown content styling */
598
table {{
0 commit comments