jekyll-theme-opentoolbox 1.0.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (202) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +661 -0
  3. data/README.md +73 -0
  4. data/_includes/banner.html +24 -0
  5. data/_includes/callouts.html +39 -0
  6. data/_includes/disqus.html +17 -0
  7. data/_includes/footer-scripts.html +1 -0
  8. data/_includes/footer.html +34 -0
  9. data/_includes/gallery.html +25 -0
  10. data/_includes/google-analytics.html +8 -0
  11. data/_includes/head-scripts.html +0 -0
  12. data/_includes/head.html +19 -0
  13. data/_includes/header.html +45 -0
  14. data/_includes/hero.html +11 -0
  15. data/_includes/image-modal.html +18 -0
  16. data/_includes/join.html +30 -0
  17. data/_includes/latest-posts.html +12 -0
  18. data/_includes/menubar.html +21 -0
  19. data/_includes/notification.html +17 -0
  20. data/_includes/pagination.html +23 -0
  21. data/_includes/post-card.html +29 -0
  22. data/_includes/rating.html +14 -0
  23. data/_includes/review.html +27 -0
  24. data/_includes/share-buttons.html +19 -0
  25. data/_includes/showcase.html +76 -0
  26. data/_includes/sponsors.html +42 -0
  27. data/_includes/sub-pages.html +28 -0
  28. data/_includes/subscribe.html +6 -0
  29. data/_includes/tabs.html +18 -0
  30. data/_includes/tag.html +3 -0
  31. data/_includes/toc.html +82 -0
  32. data/_includes/vimeo.html +3 -0
  33. data/_includes/youtube.html +8 -0
  34. data/_layouts/blog.html +20 -0
  35. data/_layouts/default.html +66 -0
  36. data/_layouts/page.html +11 -0
  37. data/_layouts/post.html +23 -0
  38. data/_layouts/product-category.html +42 -0
  39. data/_layouts/product.html +61 -0
  40. data/_layouts/recipe.html +98 -0
  41. data/_layouts/resource.html +9 -0
  42. data/_posts/2021-03-24-hello.md +13 -0
  43. data/_sass/_layout.scss +37 -0
  44. data/_sass/_main.scss +22 -0
  45. data/_sass/_showcase.scss +13 -0
  46. data/_sass/syntax.scss +209 -0
  47. data/assets/css/app.scss +157 -0
  48. data/assets/css/highlight.css +78 -0
  49. data/assets/js/app.js +1 -0
  50. data/blog/index.html +6 -0
  51. data/node_modules/bulma/CHANGELOG.md +1558 -0
  52. data/node_modules/bulma/LICENSE +21 -0
  53. data/node_modules/bulma/README.md +134 -0
  54. data/node_modules/bulma/bulma.sass +10 -0
  55. data/node_modules/bulma/css/bulma-rtl.css +11811 -0
  56. data/node_modules/bulma/css/bulma-rtl.css.map +1 -0
  57. data/node_modules/bulma/css/bulma-rtl.min.css +1 -0
  58. data/node_modules/bulma/css/bulma.css +11811 -0
  59. data/node_modules/bulma/css/bulma.css.map +1 -0
  60. data/node_modules/bulma/css/bulma.min.css +1 -0
  61. data/node_modules/bulma/package.json +81 -0
  62. data/node_modules/bulma/sass/base/_all.sass +6 -0
  63. data/node_modules/bulma/sass/base/animations.sass +5 -0
  64. data/node_modules/bulma/sass/base/generic.sass +145 -0
  65. data/node_modules/bulma/sass/base/helpers.sass +1 -0
  66. data/node_modules/bulma/sass/base/minireset.sass +79 -0
  67. data/node_modules/bulma/sass/components/_all.sass +15 -0
  68. data/node_modules/bulma/sass/components/breadcrumb.sass +77 -0
  69. data/node_modules/bulma/sass/components/card.sass +103 -0
  70. data/node_modules/bulma/sass/components/dropdown.sass +83 -0
  71. data/node_modules/bulma/sass/components/level.sass +79 -0
  72. data/node_modules/bulma/sass/components/media.sass +59 -0
  73. data/node_modules/bulma/sass/components/menu.sass +59 -0
  74. data/node_modules/bulma/sass/components/message.sass +101 -0
  75. data/node_modules/bulma/sass/components/modal.sass +117 -0
  76. data/node_modules/bulma/sass/components/navbar.sass +446 -0
  77. data/node_modules/bulma/sass/components/pagination.sass +166 -0
  78. data/node_modules/bulma/sass/components/panel.sass +121 -0
  79. data/node_modules/bulma/sass/components/tabs.sass +176 -0
  80. data/node_modules/bulma/sass/elements/_all.sass +16 -0
  81. data/node_modules/bulma/sass/elements/box.sass +26 -0
  82. data/node_modules/bulma/sass/elements/button.sass +345 -0
  83. data/node_modules/bulma/sass/elements/container.sass +29 -0
  84. data/node_modules/bulma/sass/elements/content.sass +159 -0
  85. data/node_modules/bulma/sass/elements/form.sass +1 -0
  86. data/node_modules/bulma/sass/elements/icon.sass +46 -0
  87. data/node_modules/bulma/sass/elements/image.sass +73 -0
  88. data/node_modules/bulma/sass/elements/notification.sass +52 -0
  89. data/node_modules/bulma/sass/elements/other.sass +31 -0
  90. data/node_modules/bulma/sass/elements/progress.sass +73 -0
  91. data/node_modules/bulma/sass/elements/table.sass +133 -0
  92. data/node_modules/bulma/sass/elements/tag.sass +140 -0
  93. data/node_modules/bulma/sass/elements/title.sass +70 -0
  94. data/node_modules/bulma/sass/form/_all.sass +9 -0
  95. data/node_modules/bulma/sass/form/checkbox-radio.sass +22 -0
  96. data/node_modules/bulma/sass/form/file.sass +184 -0
  97. data/node_modules/bulma/sass/form/input-textarea.sass +66 -0
  98. data/node_modules/bulma/sass/form/select.sass +87 -0
  99. data/node_modules/bulma/sass/form/shared.sass +60 -0
  100. data/node_modules/bulma/sass/form/tools.sass +215 -0
  101. data/node_modules/bulma/sass/grid/_all.sass +5 -0
  102. data/node_modules/bulma/sass/grid/columns.sass +513 -0
  103. data/node_modules/bulma/sass/grid/tiles.sass +36 -0
  104. data/node_modules/bulma/sass/helpers/_all.sass +12 -0
  105. data/node_modules/bulma/sass/helpers/color.sass +39 -0
  106. data/node_modules/bulma/sass/helpers/flexbox.sass +35 -0
  107. data/node_modules/bulma/sass/helpers/float.sass +10 -0
  108. data/node_modules/bulma/sass/helpers/other.sass +14 -0
  109. data/node_modules/bulma/sass/helpers/overflow.sass +2 -0
  110. data/node_modules/bulma/sass/helpers/position.sass +7 -0
  111. data/node_modules/bulma/sass/helpers/spacing.sass +31 -0
  112. data/node_modules/bulma/sass/helpers/typography.sass +103 -0
  113. data/node_modules/bulma/sass/helpers/visibility.sass +122 -0
  114. data/node_modules/bulma/sass/layout/_all.sass +6 -0
  115. data/node_modules/bulma/sass/layout/footer.sass +11 -0
  116. data/node_modules/bulma/sass/layout/hero.sass +153 -0
  117. data/node_modules/bulma/sass/layout/section.sass +17 -0
  118. data/node_modules/bulma/sass/utilities/_all.sass +9 -0
  119. data/node_modules/bulma/sass/utilities/animations.sass +1 -0
  120. data/node_modules/bulma/sass/utilities/controls.sass +49 -0
  121. data/node_modules/bulma/sass/utilities/derived-variables.sass +114 -0
  122. data/node_modules/bulma/sass/utilities/extends.sass +25 -0
  123. data/node_modules/bulma/sass/utilities/functions.sass +136 -0
  124. data/node_modules/bulma/sass/utilities/initial-variables.sass +78 -0
  125. data/node_modules/bulma/sass/utilities/mixins.sass +280 -0
  126. data/node_modules/bulma-block-list/LICENSE.txt +21 -0
  127. data/node_modules/bulma-block-list/README.md +32 -0
  128. data/node_modules/bulma-block-list/docs/Gemfile +3 -0
  129. data/node_modules/bulma-block-list/docs/_config.yml +15 -0
  130. data/node_modules/bulma-block-list/docs/_data/menu.yaml +20 -0
  131. data/node_modules/bulma-block-list/docs/_sass/_block-list.scss +109 -0
  132. data/node_modules/bulma-block-list/docs/_sass/_main.scss +20 -0
  133. data/node_modules/bulma-block-list/docs/assets/css/app.scss +7 -0
  134. data/node_modules/bulma-block-list/docs/favicon.ico +0 -0
  135. data/node_modules/bulma-block-list/docs/index.html +260 -0
  136. data/node_modules/bulma-block-list/node_modules/bulma/CHANGELOG.md +1390 -0
  137. data/node_modules/bulma-block-list/node_modules/bulma/LICENSE +21 -0
  138. data/node_modules/bulma-block-list/node_modules/bulma/README.md +130 -0
  139. data/node_modules/bulma-block-list/node_modules/bulma/bulma.sass +9 -0
  140. data/node_modules/bulma-block-list/node_modules/bulma/css/bulma.css +10855 -0
  141. data/node_modules/bulma-block-list/node_modules/bulma/css/bulma.css.map +1 -0
  142. data/node_modules/bulma-block-list/node_modules/bulma/css/bulma.min.css +1 -0
  143. data/node_modules/bulma-block-list/node_modules/bulma/package.json +77 -0
  144. data/node_modules/bulma-block-list/node_modules/bulma/sass/base/_all.sass +5 -0
  145. data/node_modules/bulma-block-list/node_modules/bulma/sass/base/generic.sass +142 -0
  146. data/node_modules/bulma-block-list/node_modules/bulma/sass/base/helpers.sass +281 -0
  147. data/node_modules/bulma-block-list/node_modules/bulma/sass/base/minireset.sass +79 -0
  148. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/_all.sass +15 -0
  149. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/breadcrumb.sass +75 -0
  150. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/card.sass +79 -0
  151. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/dropdown.sass +81 -0
  152. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/level.sass +77 -0
  153. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/list.sass +39 -0
  154. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/media.sass +50 -0
  155. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/menu.sass +57 -0
  156. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/message.sass +99 -0
  157. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/modal.sass +113 -0
  158. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/navbar.sass +441 -0
  159. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/pagination.sass +150 -0
  160. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/panel.sass +119 -0
  161. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/tabs.sass +151 -0
  162. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/_all.sass +15 -0
  163. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/box.sass +24 -0
  164. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/button.sass +323 -0
  165. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/container.sass +24 -0
  166. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/content.sass +155 -0
  167. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/form.sass +1 -0
  168. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/icon.sass +21 -0
  169. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/image.sass +71 -0
  170. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/notification.sass +43 -0
  171. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/other.sass +39 -0
  172. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/progress.sass +67 -0
  173. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/table.sass +127 -0
  174. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/tag.sass +128 -0
  175. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/title.sass +70 -0
  176. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/_all.sass +8 -0
  177. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/checkbox-radio.sass +21 -0
  178. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/file.sass +180 -0
  179. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/input-textarea.sass +64 -0
  180. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/select.sass +85 -0
  181. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/shared.sass +55 -0
  182. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/tools.sass +205 -0
  183. data/node_modules/bulma-block-list/node_modules/bulma/sass/grid/_all.sass +4 -0
  184. data/node_modules/bulma-block-list/node_modules/bulma/sass/grid/columns.sass +504 -0
  185. data/node_modules/bulma-block-list/node_modules/bulma/sass/grid/tiles.sass +34 -0
  186. data/node_modules/bulma-block-list/node_modules/bulma/sass/layout/_all.sass +5 -0
  187. data/node_modules/bulma-block-list/node_modules/bulma/sass/layout/footer.sass +9 -0
  188. data/node_modules/bulma-block-list/node_modules/bulma/sass/layout/hero.sass +145 -0
  189. data/node_modules/bulma-block-list/node_modules/bulma/sass/layout/section.sass +13 -0
  190. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/_all.sass +8 -0
  191. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/animations.sass +5 -0
  192. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/controls.sass +50 -0
  193. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/derived-variables.sass +106 -0
  194. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/functions.sass +110 -0
  195. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/initial-variables.sass +77 -0
  196. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/mixins.sass +261 -0
  197. data/node_modules/bulma-block-list/package.json +56 -0
  198. data/node_modules/bulma-block-list/src/block-list.scss +109 -0
  199. data/node_modules/bulma-block-list/src/demo.scss +3 -0
  200. data/package-lock.json +28 -0
  201. data/package.json +20 -0
  202. metadata +441 -0
data/_sass/syntax.scss ADDED
@@ -0,0 +1,209 @@
1
+ .highlight table td { padding: 5px; }
2
+ .highlight table pre { margin: 0; }
3
+ .highlight .cm {
4
+ color: #999988;
5
+ font-style: italic;
6
+ }
7
+ .highlight .cp {
8
+ color: #999999;
9
+ font-weight: bold;
10
+ }
11
+ .highlight .c1 {
12
+ color: #999988;
13
+ font-style: italic;
14
+ }
15
+ .highlight .cs {
16
+ color: #999999;
17
+ font-weight: bold;
18
+ font-style: italic;
19
+ }
20
+ .highlight .c, .highlight .cd {
21
+ color: #999988;
22
+ font-style: italic;
23
+ }
24
+ .highlight .err {
25
+ color: #a61717;
26
+ background-color: #e3d2d2;
27
+ }
28
+ .highlight .gd {
29
+ color: #000000;
30
+ background-color: #ffdddd;
31
+ }
32
+ .highlight .ge {
33
+ color: #000000;
34
+ font-style: italic;
35
+ }
36
+ .highlight .gr {
37
+ color: #aa0000;
38
+ }
39
+ .highlight .gh {
40
+ color: #999999;
41
+ }
42
+ .highlight .gi {
43
+ color: #000000;
44
+ background-color: #ddffdd;
45
+ }
46
+ .highlight .go {
47
+ color: #888888;
48
+ }
49
+ .highlight .gp {
50
+ color: #555555;
51
+ }
52
+ .highlight .gs {
53
+ font-weight: bold;
54
+ }
55
+ .highlight .gu {
56
+ color: #aaaaaa;
57
+ }
58
+ .highlight .gt {
59
+ color: #aa0000;
60
+ }
61
+ .highlight .kc {
62
+ color: #000000;
63
+ font-weight: bold;
64
+ }
65
+ .highlight .kd {
66
+ color: #000000;
67
+ font-weight: bold;
68
+ }
69
+ .highlight .kn {
70
+ color: #000000;
71
+ font-weight: bold;
72
+ }
73
+ .highlight .kp {
74
+ color: #000000;
75
+ font-weight: bold;
76
+ }
77
+ .highlight .kr {
78
+ color: #000000;
79
+ font-weight: bold;
80
+ }
81
+ .highlight .kt {
82
+ color: #445588;
83
+ font-weight: bold;
84
+ }
85
+ .highlight .k, .highlight .kv {
86
+ color: #000000;
87
+ font-weight: bold;
88
+ }
89
+ .highlight .mf {
90
+ color: #009999;
91
+ }
92
+ .highlight .mh {
93
+ color: #009999;
94
+ }
95
+ .highlight .il {
96
+ color: #009999;
97
+ }
98
+ .highlight .mi {
99
+ color: #009999;
100
+ }
101
+ .highlight .mo {
102
+ color: #009999;
103
+ }
104
+ .highlight .m, .highlight .mb, .highlight .mx {
105
+ color: #009999;
106
+ }
107
+ .highlight .sb {
108
+ color: #d14;
109
+ }
110
+ .highlight .sc {
111
+ color: #d14;
112
+ }
113
+ .highlight .sd {
114
+ color: #d14;
115
+ }
116
+ .highlight .s2 {
117
+ color: #d14;
118
+ }
119
+ .highlight .se {
120
+ color: #d14;
121
+ }
122
+ .highlight .sh {
123
+ color: #d14;
124
+ }
125
+ .highlight .si {
126
+ color: #d14;
127
+ }
128
+ .highlight .sx {
129
+ color: #d14;
130
+ }
131
+ .highlight .sr {
132
+ color: #009926;
133
+ }
134
+ .highlight .s1 {
135
+ color: #d14;
136
+ }
137
+ .highlight .ss {
138
+ color: #990073;
139
+ }
140
+ .highlight .s {
141
+ color: #d14;
142
+ }
143
+ .highlight .na {
144
+ color: #008080;
145
+ }
146
+ .highlight .bp {
147
+ color: #999999;
148
+ }
149
+ .highlight .nb {
150
+ color: #0086B3;
151
+ }
152
+ .highlight .nc {
153
+ color: #445588;
154
+ font-weight: bold;
155
+ }
156
+ .highlight .no {
157
+ color: #008080;
158
+ }
159
+ .highlight .nd {
160
+ color: #3c5d5d;
161
+ font-weight: bold;
162
+ }
163
+ .highlight .ni {
164
+ color: #800080;
165
+ }
166
+ .highlight .ne {
167
+ color: #990000;
168
+ font-weight: bold;
169
+ }
170
+ .highlight .nf {
171
+ color: #990000;
172
+ font-weight: bold;
173
+ }
174
+ .highlight .nl {
175
+ color: #990000;
176
+ font-weight: bold;
177
+ }
178
+ .highlight .nn {
179
+ color: #555555;
180
+ }
181
+ .highlight .nt {
182
+ color: #000080;
183
+ }
184
+ .highlight .vc {
185
+ color: #008080;
186
+ }
187
+ .highlight .vg {
188
+ color: #008080;
189
+ }
190
+ .highlight .vi {
191
+ color: #008080;
192
+ }
193
+ .highlight .nv {
194
+ color: #008080;
195
+ }
196
+ .highlight .ow {
197
+ color: #000000;
198
+ font-weight: bold;
199
+ }
200
+ .highlight .o {
201
+ color: #000000;
202
+ font-weight: bold;
203
+ }
204
+ .highlight .w {
205
+ color: #bbbbbb;
206
+ }
207
+ .highlight {
208
+ background-color: #f8f8f8;
209
+ }
@@ -0,0 +1,157 @@
1
+ ---
2
+ ---
3
+
4
+ ////////////////////////////////////////////////
5
+ // start2impact //
6
+ ////////////////////////////////////////////////
7
+
8
+ $orange: #e67e22;
9
+ $yellow: #FFCB00;
10
+ $green: #68D072;
11
+ $turquoise: #1abc9c;
12
+ $blue: #006eff;
13
+ $purple: #8e44ad;
14
+ $red: #e74c3c;
15
+ $white-ter: #ecf0f1;
16
+ $yellow-invert: #fff;
17
+ $white: #ffffff;
18
+ $grey-lighter: #dbdee0;
19
+ $grey-light: #8c9b9d;
20
+
21
+ $spacing-values: ("none": 0, "small": 10px, "medium": 60px, "large": 150px, "negative-medium": -60px, "negative-large": -150px);
22
+
23
+
24
+ $grey: darken($grey-light, 18);
25
+ $grey-dark: darken($grey, 18);
26
+ $grey-darker: darken($grey, 23);
27
+
28
+ $background: $white;
29
+ $primary: $blue !default;
30
+ $secondary: $yellow !default;
31
+ $dark: $grey-darker;
32
+ $link: $blue;
33
+ $info: lighten($blue, 15);
34
+
35
+ $family-sans-serif: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI",
36
+ "Helvetica Neue", "Helvetica", "Arial", sans-serif;
37
+ $family-monospace: "Inconsolata", "Consolas", "Monaco", monospace;
38
+
39
+ $radius-small: 3px;
40
+ $radius: 0.4em;
41
+ $radius-large: 20px;
42
+ $size-6: 15px;
43
+ $size-7: 0.85em;
44
+ $subtitle-color: $grey-dark;
45
+ $mention-weight: bold;
46
+ $mention-color: $link;
47
+
48
+ $border-width: 2px;
49
+ $border: $grey;
50
+
51
+ $hr-background-color: transparentize($dark, 0.9);
52
+ $hr-margin: 2rem 5%;
53
+ $hr-height: 1px;
54
+
55
+ $shadow-large: 0px 0px 60px transparentize($dark, 0.7);
56
+
57
+ $body-background-color: $background;
58
+ $body-size: 15px;
59
+
60
+ $footer-background-color: darken($background, 5);
61
+ $button-background-color: $dark;
62
+ $button-border-color: lighten($button-background-color, 15);
63
+
64
+ $box-color: $dark;
65
+ $box-background-color: $white;
66
+
67
+ $link-hover: lighten($link, 5);
68
+ $link-focus: darken($link, 5);
69
+ $link-active: darken($link, 5);
70
+ $link-focus-border: $grey-light;
71
+
72
+ $button-color: $primary;
73
+ $button-disabled-background-color: $grey-light;
74
+
75
+ $control-height: 2.5em;
76
+
77
+ $input-color: $grey-darker;
78
+ $input-icon-color: $grey;
79
+ $input-icon-active-color: $input-color;
80
+ $input-hover-color: $grey-light;
81
+ $input-disabled-background-color: $grey-light;
82
+ $input-disabled-border: $grey-lighter;
83
+
84
+ $table-head: $grey-lighter;
85
+ $table-background-color: $grey-dark;
86
+ $table-cell-border: 1px solid $grey;
87
+
88
+ $table-row-hover-background-color: $grey-darker;
89
+ $table-striped-row-even-background-color: $grey-darker;
90
+ $table-striped-row-even-hover-background-color: lighten($grey-darker, 2);
91
+
92
+ $pagination-color: $link;
93
+ $pagination-border-color: $border;
94
+
95
+ $navbar-height: 4rem;
96
+
97
+ $navbar-background-color: $dark !important;
98
+ $navbar-item-color: $white;
99
+ $navbar-item-hover-color: $link;
100
+ $navbar-item-hover-background-color: transparent;
101
+ $navbar-item-active-color: $secondary;
102
+ $navbar-dropdown-arrow: $white;
103
+ $navbar-divider-background-color: rgba(0, 0, 0, 0.2);
104
+ $navbar-dropdown-border-top: 1px solid $navbar-divider-background-color;
105
+ $navbar-dropdown-background-color: $dark !important;
106
+ $navbar-dropdown-item-hover-color: $grey-light;
107
+ $navbar-dropdown-item-hover-background-color: transparent;
108
+ $navbar-dropdown-item-active-background-color: transparent;
109
+ $navbar-dropdown-item-active-color: $link;
110
+
111
+ $dropdown-content-background-color: $white;
112
+
113
+ $progress-value-background-color: $grey-lighter;
114
+
115
+ $bulmaswatch-import-font: true !default;
116
+
117
+ $file-cta-background-color: $grey-darker;
118
+
119
+ $progress-bar-background-color: $grey-dark;
120
+
121
+ $panel-heading-background-color: $grey-dark;
122
+
123
+ .user-mention {
124
+ font-weight: $mention-weight;
125
+ color: $mention-color;
126
+ }
127
+
128
+ .pagination-previous, .pagination-next {
129
+ &[disabled] {
130
+ background-color: $link !important;
131
+ color: $white !important;
132
+ border: none !important;
133
+ }
134
+ }
135
+
136
+ .is-dark {
137
+ &.box {
138
+ background-color: $dark !important;
139
+ color: $white;
140
+ }
141
+ }
142
+
143
+ .thumbnail {
144
+ width: 100%;
145
+ }
146
+
147
+ .is-rounded {
148
+ border-radius: $radius-large !important;
149
+ }
150
+
151
+ .has-shadow {
152
+ box-shadow: $shadow-large !important;
153
+ }
154
+
155
+ @import "highlight.css";
156
+
157
+ @import "main";
@@ -0,0 +1,78 @@
1
+ .highlight .hll { background-color: #404040 }
2
+ .highlight { background: #202020; color: #d0d0d0 }
3
+ .highlight .c { color: #999999; font-style: italic } /* Comment */
4
+ .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
5
+ .highlight .esc { color: #d0d0d0 } /* Escape */
6
+ .highlight .g { color: #d0d0d0 } /* Generic */
7
+ .highlight .k { color: #6ab825; font-weight: bold } /* Keyword */
8
+ .highlight .l { color: #d0d0d0 } /* Literal */
9
+ .highlight .n { color: #d0d0d0 } /* Name */
10
+ .highlight .o { color: #d0d0d0 } /* Operator */
11
+ .highlight .x { color: #d0d0d0 } /* Other */
12
+ .highlight .p { color: #d0d0d0 } /* Punctuation */
13
+ .highlight .ch { color: #999999; font-style: italic } /* Comment.Hashbang */
14
+ .highlight .cm { color: #999999; font-style: italic } /* Comment.Multiline */
15
+ .highlight .cp { color: #cd2828; font-weight: bold } /* Comment.Preproc */
16
+ .highlight .cpf { color: #999999; font-style: italic } /* Comment.PreprocFile */
17
+ .highlight .c1 { color: #999999; font-style: italic } /* Comment.Single */
18
+ .highlight .cs { color: #e50808; font-weight: bold; background-color: #520000 } /* Comment.Special */
19
+ .highlight .gd { color: #d22323 } /* Generic.Deleted */
20
+ .highlight .ge { color: #d0d0d0; font-style: italic } /* Generic.Emph */
21
+ .highlight .gr { color: #d22323 } /* Generic.Error */
22
+ .highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
23
+ .highlight .gi { color: #589819 } /* Generic.Inserted */
24
+ .highlight .go { color: #cccccc } /* Generic.Output */
25
+ .highlight .gp { color: #aaaaaa } /* Generic.Prompt */
26
+ .highlight .gs { color: #d0d0d0; font-weight: bold } /* Generic.Strong */
27
+ .highlight .gu { color: #ffffff; text-decoration: underline } /* Generic.Subheading */
28
+ .highlight .gt { color: #d22323 } /* Generic.Traceback */
29
+ .highlight .kc { color: #6ab825; font-weight: bold } /* Keyword.Constant */
30
+ .highlight .kd { color: #6ab825; font-weight: bold } /* Keyword.Declaration */
31
+ .highlight .kn { color: #6ab825; font-weight: bold } /* Keyword.Namespace */
32
+ .highlight .kp { color: #6ab825 } /* Keyword.Pseudo */
33
+ .highlight .kr { color: #6ab825; font-weight: bold } /* Keyword.Reserved */
34
+ .highlight .kt { color: #6ab825; font-weight: bold } /* Keyword.Type */
35
+ .highlight .ld { color: #d0d0d0 } /* Literal.Date */
36
+ .highlight .m { color: #3677a9 } /* Literal.Number */
37
+ .highlight .s { color: #ed9d13 } /* Literal.String */
38
+ .highlight .na { color: #bbbbbb } /* Name.Attribute */
39
+ .highlight .nb { color: #24909d } /* Name.Builtin */
40
+ .highlight .nc { color: #447fcf; text-decoration: underline } /* Name.Class */
41
+ .highlight .no { color: #40ffff } /* Name.Constant */
42
+ .highlight .nd { color: #ffa500 } /* Name.Decorator */
43
+ .highlight .ni { color: #d0d0d0 } /* Name.Entity */
44
+ .highlight .ne { color: #bbbbbb } /* Name.Exception */
45
+ .highlight .nf { color: #447fcf } /* Name.Function */
46
+ .highlight .nl { color: #d0d0d0 } /* Name.Label */
47
+ .highlight .nn { color: #447fcf; text-decoration: underline } /* Name.Namespace */
48
+ .highlight .nx { color: #d0d0d0 } /* Name.Other */
49
+ .highlight .py { color: #d0d0d0 } /* Name.Property */
50
+ .highlight .nt { color: #6ab825; font-weight: bold } /* Name.Tag */
51
+ .highlight .nv { color: #40ffff } /* Name.Variable */
52
+ .highlight .ow { color: #6ab825; font-weight: bold } /* Operator.Word */
53
+ .highlight .w { color: #666666 } /* Text.Whitespace */
54
+ .highlight .mb { color: #3677a9 } /* Literal.Number.Bin */
55
+ .highlight .mf { color: #3677a9 } /* Literal.Number.Float */
56
+ .highlight .mh { color: #3677a9 } /* Literal.Number.Hex */
57
+ .highlight .mi { color: #3677a9 } /* Literal.Number.Integer */
58
+ .highlight .mo { color: #3677a9 } /* Literal.Number.Oct */
59
+ .highlight .sa { color: #ed9d13 } /* Literal.String.Affix */
60
+ .highlight .sb { color: #ed9d13 } /* Literal.String.Backtick */
61
+ .highlight .sc { color: #ed9d13 } /* Literal.String.Char */
62
+ .highlight .dl { color: #ed9d13 } /* Literal.String.Delimiter */
63
+ .highlight .sd { color: #ed9d13 } /* Literal.String.Doc */
64
+ .highlight .s2 { color: #ed9d13 } /* Literal.String.Double */
65
+ .highlight .se { color: #ed9d13 } /* Literal.String.Escape */
66
+ .highlight .sh { color: #ed9d13 } /* Literal.String.Heredoc */
67
+ .highlight .si { color: #ed9d13 } /* Literal.String.Interpol */
68
+ .highlight .sx { color: #ffa500 } /* Literal.String.Other */
69
+ .highlight .sr { color: #ed9d13 } /* Literal.String.Regex */
70
+ .highlight .s1 { color: #ed9d13 } /* Literal.String.Single */
71
+ .highlight .ss { color: #ed9d13 } /* Literal.String.Symbol */
72
+ .highlight .bp { color: #24909d } /* Name.Builtin.Pseudo */
73
+ .highlight .fm { color: #447fcf } /* Name.Function.Magic */
74
+ .highlight .vc { color: #40ffff } /* Name.Variable.Class */
75
+ .highlight .vg { color: #40ffff } /* Name.Variable.Global */
76
+ .highlight .vi { color: #40ffff } /* Name.Variable.Instance */
77
+ .highlight .vm { color: #40ffff } /* Name.Variable.Magic */
78
+ .highlight .il { color: #3677a9 } /* Literal.Number.Integer.Long */
data/assets/js/app.js ADDED
@@ -0,0 +1 @@
1
+ //
data/blog/index.html ADDED
@@ -0,0 +1,6 @@
1
+ ---
2
+ title: Aggiornamenti
3
+ layout: blog
4
+ show_sidebar: false
5
+ hero_height: is-small
6
+ ---