mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-02 21:24:34 +00:00
FAQ/privacy HTML styles
This commit is contained in:
parent
27cd1c5263
commit
9b9db2f1dd
4 changed files with 18 additions and 1 deletions
8
FAQ.yaml
Normal file
8
FAQ.yaml
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
header-includes: |
|
||||
<style>
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
}
|
||||
</style>
|
||||
---
|
|
@ -395,7 +395,7 @@ preBuild.dependsOn copyChangelog
|
|||
|
||||
tasks.register('updateFAQ', Exec) {
|
||||
workingDir "${rootDir}"
|
||||
commandLine 'sh', '-c', 'pandoc --standalone FAQ.md -o index.html'
|
||||
commandLine 'sh', '-c', 'pandoc --standalone --metadata-file FAQ.yaml FAQ.md -o index.html'
|
||||
}
|
||||
|
||||
tasks.register('updatePrivacy', Exec) {
|
||||
|
|
|
@ -13,6 +13,11 @@
|
|||
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
|
||||
ul.task-list{list-style: none;}
|
||||
</style>
|
||||
<style>
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p><a name="top"></a></p>
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
}
|
||||
|
||||
.table-wrapper {
|
||||
overflow-x: auto;
|
||||
white-space: nowrap;
|
||||
|
|
Loading…
Reference in a new issue