Commit 3fa08b0f7a98e54b90e69534fa221ad63d5bbb2f
1 parent
bedea2d873
Exists in
master
Ajout d'un thème bleu
Showing 11 changed files with 137 additions and 0 deletions Inline Diff
- style-blue.conf
- templates/html/common-blue/arrow-left-inact.png
- templates/html/common-blue/arrow-left.png
- templates/html/common-blue/arrow-right-inact.png
- templates/html/common-blue/arrow-right.png
- templates/html/common-blue/arrow-up-inact.png
- templates/html/common-blue/arrow-up.png
- templates/html/common-blue/attachment.png
- templates/html/common-blue/backlink.png
- templates/html/common-blue/notice.js
- templates/html/common-blue/zim-variables.css
style-blue.conf
File was created | 1 | # | ||
2 | # Regarder l'aide de zim section Config Files | |||
3 | # | |||
4 | [TextView] | |||
5 | indent=30 | |||
6 | tabs=None | |||
7 | font= | |||
8 | justify= | |||
9 | linespacing=3 | |||
10 | bullet_icon_size=GTK_ICON_SIZE_MENU | |||
11 | ||||
12 | [Tag strong] | |||
13 | weight=PANGO_WEIGHT_BOLD | |||
14 | ||||
15 | [Tag emphasis] | |||
16 | style=PANGO_STYLE_ITALIC | |||
17 | ||||
18 | [Tag mark] | |||
19 | underline=PANGO_UNDERLINE_SINGLE | |||
20 | background=white | |||
21 | ||||
22 | [Tag strike] | |||
23 | strikethrough=True | |||
24 | foreground=grey | |||
25 | ||||
26 | [Tag code] | |||
27 | foreground=#8B008B | |||
28 | family=monospace | |||
29 | ||||
30 | [Tag pre] | |||
31 | foreground=#8B008B | |||
32 | family=monospace | |||
33 | wrap-mode=GTK_WRAP_NONE | |||
34 | indent=20 | |||
35 | ||||
36 | [Tag link] | |||
37 | foreground=#008ab8 | |||
38 | ||||
39 | [Tag tag] | |||
40 | foreground=#ce5c00 | |||
41 | ||||
42 | [Tag h1] | |||
43 | foreground=#437484 | |||
44 | underline=PANGO_UNDERLINE_SINGLE | |||
45 | weight=PANGO_WEIGHT_BOLD | |||
46 | scale=1.75 | |||
47 | ||||
48 | [Tag h2] | |||
49 | foreground=#437484 | |||
50 | weight=PANGO_WEIGHT_BOLD | |||
51 | scale=1.52 | |||
52 | indent=20 | |||
53 | ||||
54 | [Tag h3] | |||
55 | foreground=#437484 | |||
56 | style=PANGO_STYLE_ITALIC | |||
57 | weight=PANGO_WEIGHT_BOLD | |||
58 | scale=1.32 | |||
59 | indent=40 | |||
60 | ||||
61 | [Tag h4] | |||
62 | foreground=#437484 | |||
63 | weight=PANGO_WEIGHT_BOLD |
templates/html/common-blue/arrow-left-inact.png
981 Bytes
templates/html/common-blue/arrow-left.png
1.79 KB
templates/html/common-blue/arrow-right-inact.png
1004 Bytes
templates/html/common-blue/arrow-right.png
1.82 KB
templates/html/common-blue/arrow-up-inact.png
935 Bytes
templates/html/common-blue/arrow-up.png
1.71 KB
templates/html/common-blue/attachment.png
1.74 KB
templates/html/common-blue/backlink.png
4.9 KB
templates/html/common-blue/notice.js
File was created | 1 | printNotice = function() { | ||
2 | /* You may put into variable notice a short text that will | |||
3 | * appears at the end of the page, that can be for example | |||
4 | * a confidentiality warning or anything | |||
5 | */ | |||
6 | var notice = | |||
7 | /*"This document is a wize export of a zim notebook!";*/ | |||
8 | ""; | |||
9 | document.getElementById('foot-notice').innerHTML = notice; | |||
10 | } |
templates/html/common-blue/zim-variables.css
File was created | 1 | |||
2 | /* Variables */ | |||
3 | ||||
4 | :root { | |||
5 | /* General */ | |||
6 | --main-header-color: #437484; /* Headers color */ | |||
7 | --main-link-color: #008ab8; /* Links color */ | |||
8 | --main-strike-color: grey; /* Strike color */ | |||
9 | --main-pre-color: darkmagenta; /* Verbatim bloc color */ | |||
10 | --main-tt-color: darkmagenta; /* Inline verbatim */ | |||
11 | --main-code-color: saddlebrown; /* Code color (if hljs not used) */ | |||
12 | ||||
13 | /* Background | |||
14 | * | |||
15 | * if fond.jpg exists in the resource directory, it will be used as backround | |||
16 | * image with position and repetition given by : | |||
17 | * --main-body-background-position an --main-body-background-repeat | |||
18 | * | |||
19 | * if the image does not exists the color defined by | |||
20 | * --main-body-background-color | |||
21 | * will be used | |||
22 | */ | |||
23 | --main-body-background-color: linear-gradient(to right,#8eb7c2,white,white,#8eb7c2); /* Color of the background body */ | |||
24 | --main-body-background-position: center; | |||
25 | --main-body-background-repeat: repeat-y; | |||
26 | ||||
27 | --main-menu-background-color: #fafafa; /* Backroung color of side menu */ | |||
28 | /* Underline really underlined */ | |||
29 | --main-menu-u-decoration: underline; | |||
30 | --main-menu-u-background-color: white; | |||
31 | /* Underline Stabilo Version */ | |||
32 | /*--main-menu-u-decoration: none; | |||
33 | --main-menu-u-background-color: yellow;*/ | |||
34 | --main-page-width: 63em; /* Page width */ | |||
35 | ||||
36 | ||||
37 | /* Tables */ | |||
38 | /* Table headers */ | |||
39 | --main-th-color: black; /* Table header text color */ | |||
40 | --main-th-background-color: #bbb; /* Table header background */ |