manifest
BIN
docs/assets/icons/icon-128x128.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
docs/assets/icons/icon-144x144.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
docs/assets/icons/icon-152x152.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
docs/assets/icons/icon-192x192.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
docs/assets/icons/icon-384x384.png
Normal file
|
After Width: | Height: | Size: 43 KiB |
BIN
docs/assets/icons/icon-512x512.png
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
docs/assets/icons/icon-72x72.png
Normal file
|
After Width: | Height: | Size: 5.8 KiB |
BIN
docs/assets/icons/icon-96x96.png
Normal file
|
After Width: | Height: | Size: 8.3 KiB |
53
docs/manifest.json
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
{
|
||||||
|
"name": "Documentations",
|
||||||
|
"short_name": "Docs",
|
||||||
|
"theme_color": "#2196f3",
|
||||||
|
"background_color": "#2196f3",
|
||||||
|
"display": "fullscreen",
|
||||||
|
"orientation": "portrait",
|
||||||
|
"scope": "/central_docs/",
|
||||||
|
"start_url": "./",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "assets/icons/icon-72x72.png",
|
||||||
|
"sizes": "72x72",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "assets/icons/icon-96x96.png",
|
||||||
|
"sizes": "96x96",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "assets/icons/icon-128x128.png",
|
||||||
|
"sizes": "128x128",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "assets/icons/icon-144x144.png",
|
||||||
|
"sizes": "144x144",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "assets/icons/icon-152x152.png",
|
||||||
|
"sizes": "152x152",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "assets/icons/icon-192x192.png",
|
||||||
|
"sizes": "192x192",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "assets/icons/icon-384x384.png",
|
||||||
|
"sizes": "384x384",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "assets/icons/icon-512x512.png",
|
||||||
|
"sizes": "512x512",
|
||||||
|
"type": "image/png"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"splash_pages": null
|
||||||
|
}
|
||||||
17
docs/stylesheets/second_extra.css
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
@page {
|
||||||
|
size: a4 portrait;
|
||||||
|
margin: 25mm 10mm 25mm 10mm;
|
||||||
|
counter-increment: page;
|
||||||
|
font-family: "Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;
|
||||||
|
white-space: pre;
|
||||||
|
color: grey;
|
||||||
|
@bottom-left {
|
||||||
|
content: '© 2020 bruno@clicclac.info';
|
||||||
|
}
|
||||||
|
@bottom-center {
|
||||||
|
content: string(chapter);
|
||||||
|
}
|
||||||
|
@bottom-right {
|
||||||
|
content: 'Page ' counter(page);
|
||||||
|
}
|
||||||
|
}
|
||||||