jekyll-theme-pirati 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (232) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/LICENSE.txt +21 -0
  4. data/README.md +55 -0
  5. data/_includes/accordeon/accordeon-column.html +8 -0
  6. data/_includes/accordeon/accordeon.html +12 -0
  7. data/_includes/article-list/featured_article.html +55 -0
  8. data/_includes/article-list/list-3col.html +55 -0
  9. data/_includes/article-list/pagination.html +36 -0
  10. data/_includes/article-list/standard_article.html +45 -0
  11. data/_includes/disqus_comments.html +20 -0
  12. data/_includes/footer.html +23 -0
  13. data/_includes/google-analytics.html +12 -0
  14. data/_includes/head.html +60 -0
  15. data/_includes/header.html +115 -0
  16. data/_includes/icon-github.html +1 -0
  17. data/_includes/icon-github.svg +1 -0
  18. data/_includes/icon-twitter.html +1 -0
  19. data/_includes/icon-twitter.svg +1 -0
  20. data/_includes/js/custom.js +245 -0
  21. data/_includes/js/fb.js +15 -0
  22. data/_includes/js/main.html +18 -0
  23. data/_includes/js/piwik.js +11 -0
  24. data/_includes/js/tw.js +15 -0
  25. data/_includes/people/item.html +31 -0
  26. data/_includes/people/list-2col.html +25 -0
  27. data/_includes/right-bar/bar_cal.html +15 -0
  28. data/_includes/right-bar/bar_fb.html +23 -0
  29. data/_includes/right-bar/bar_foto.html +20 -0
  30. data/_includes/right-bar/bar_map.html +37 -0
  31. data/_includes/right-bar/bar_people.html +25 -0
  32. data/_includes/right-bar/bar_program.html +35 -0
  33. data/_includes/right-bar/bar_teams_summary.html +22 -0
  34. data/_includes/right-bar/bar_teams_toc.html +31 -0
  35. data/_includes/right-bar/bar_textbox.html +23 -0
  36. data/_includes/right-bar/bar_toc.html +77 -0
  37. data/_includes/right-bar/bar_tw.html +16 -0
  38. data/_includes/right-bar/bar_video.html +23 -0
  39. data/_includes/right-bar/rbar.html +39 -0
  40. data/_includes/right-bar/social-bar.html +16 -0
  41. data/_includes/social.html +14 -0
  42. data/_includes/submenu.html +22 -0
  43. data/_includes/title/title_header.html +9 -0
  44. data/_layouts/blank.html +14 -0
  45. data/_layouts/compress.html +10 -0
  46. data/_layouts/default.html +23 -0
  47. data/_layouts/home.html +34 -0
  48. data/_layouts/page.html +34 -0
  49. data/_layouts/post.html +110 -0
  50. data/_layouts/redirected.html +13 -0
  51. data/_layouts/team.html +45 -0
  52. data/_sass/_base.scss +24 -0
  53. data/_sass/_settings.scss +569 -0
  54. data/_sass/_sprites.scss +0 -0
  55. data/_sass/components/BasicPage.scss +464 -0
  56. data/_sass/components/BlogPosting.scss +274 -0
  57. data/_sass/components/Person.scss +42 -0
  58. data/_sass/components/Slider.scss +0 -0
  59. data/_sass/components/banner.scss +75 -0
  60. data/_sass/components/blockquote.scss +53 -0
  61. data/_sass/components/card.scss +154 -0
  62. data/_sass/components/contact-bar.scss +93 -0
  63. data/_sass/components/content-card.scss +31 -0
  64. data/_sass/components/cta-button.scss +54 -0
  65. data/_sass/components/header-bar.scss +108 -0
  66. data/_sass/components/hero.scss +164 -0
  67. data/_sass/components/highlight.scss +60 -0
  68. data/_sass/components/icon.scss +25 -0
  69. data/_sass/components/pagination.scss +75 -0
  70. data/_sass/components/pripoj-se.scss +97 -0
  71. data/_sass/components/scroll-top.scss +32 -0
  72. data/_sass/components/simple-accordion.scss +85 -0
  73. data/_sass/components/tag.scss +30 -0
  74. data/_sass/components/top-bar.scss +492 -0
  75. data/_sass/components/top-sub-nav.scss +186 -0
  76. data/_sass/components/vertical-navigation.scss +68 -0
  77. data/_sass/components/welcome-header.scss +188 -0
  78. data/_sass/components/widget-accordion.scss +293 -0
  79. data/_sass/components/widget-share-box.scss +57 -0
  80. data/_sass/components/widget-simple-text.scss +15 -0
  81. data/_sass/foundation/_global.scss +638 -0
  82. data/_sass/foundation/components/_accordion-menu.scss +32 -0
  83. data/_sass/foundation/components/_accordion.scss +129 -0
  84. data/_sass/foundation/components/_badge.scss +55 -0
  85. data/_sass/foundation/components/_breadcrumbs.scss +95 -0
  86. data/_sass/foundation/components/_button-group.scss +195 -0
  87. data/_sass/foundation/components/_button.scss +265 -0
  88. data/_sass/foundation/components/_callout.scss +105 -0
  89. data/_sass/foundation/components/_close-button.scss +61 -0
  90. data/_sass/foundation/components/_drilldown.scss +79 -0
  91. data/_sass/foundation/components/_dropdown-menu.scss +221 -0
  92. data/_sass/foundation/components/_dropdown.scss +65 -0
  93. data/_sass/foundation/components/_flex-video.scss +63 -0
  94. data/_sass/foundation/components/_flex.scss +28 -0
  95. data/_sass/foundation/components/_float.scss +27 -0
  96. data/_sass/foundation/components/_label.scss +55 -0
  97. data/_sass/foundation/components/_media-object.scss +115 -0
  98. data/_sass/foundation/components/_menu-icon.scss +9 -0
  99. data/_sass/foundation/components/_menu.scss +314 -0
  100. data/_sass/foundation/components/_off-canvas.scss +177 -0
  101. data/_sass/foundation/components/_orbit.scss +193 -0
  102. data/_sass/foundation/components/_pagination.scss +162 -0
  103. data/_sass/foundation/components/_progress-bar.scss +64 -0
  104. data/_sass/foundation/components/_reveal.scss +172 -0
  105. data/_sass/foundation/components/_slider.scss +133 -0
  106. data/_sass/foundation/components/_sticky.scss +38 -0
  107. data/_sass/foundation/components/_switch.scss +232 -0
  108. data/_sass/foundation/components/_table.scss +234 -0
  109. data/_sass/foundation/components/_tabs.scss +165 -0
  110. data/_sass/foundation/components/_thumbnail.scss +54 -0
  111. data/_sass/foundation/components/_title-bar.scss +89 -0
  112. data/_sass/foundation/components/_tooltip.scss +104 -0
  113. data/_sass/foundation/components/_top-bar.scss +168 -0
  114. data/_sass/foundation/components/_visibility.scss +132 -0
  115. data/_sass/foundation/forms/_checkbox.scss +40 -0
  116. data/_sass/foundation/forms/_error.scss +84 -0
  117. data/_sass/foundation/forms/_fieldset.scss +54 -0
  118. data/_sass/foundation/forms/_forms.scss +34 -0
  119. data/_sass/foundation/forms/_help-text.scss +30 -0
  120. data/_sass/foundation/forms/_input-group.scss +128 -0
  121. data/_sass/foundation/forms/_label.scss +48 -0
  122. data/_sass/foundation/forms/_meter.scss +109 -0
  123. data/_sass/foundation/forms/_progress.scss +85 -0
  124. data/_sass/foundation/forms/_range.scss +144 -0
  125. data/_sass/foundation/forms/_select.scss +67 -0
  126. data/_sass/foundation/forms/_text.scss +163 -0
  127. data/_sass/foundation/foundation.scss +102 -0
  128. data/_sass/foundation/grid/_classes.scss +151 -0
  129. data/_sass/foundation/grid/_column.scss +126 -0
  130. data/_sass/foundation/grid/_flex-grid.scss +274 -0
  131. data/_sass/foundation/grid/_grid.scss +60 -0
  132. data/_sass/foundation/grid/_gutter.scss +34 -0
  133. data/_sass/foundation/grid/_layout.scss +51 -0
  134. data/_sass/foundation/grid/_position.scss +73 -0
  135. data/_sass/foundation/grid/_row.scss +95 -0
  136. data/_sass/foundation/grid/_size.scss +24 -0
  137. data/_sass/foundation/settings/_settings.scss +567 -0
  138. data/_sass/foundation/typography/_alignment.scss +22 -0
  139. data/_sass/foundation/typography/_base.scss +443 -0
  140. data/_sass/foundation/typography/_helpers.scss +77 -0
  141. data/_sass/foundation/typography/_print.scss +77 -0
  142. data/_sass/foundation/typography/_typography.scss +28 -0
  143. data/_sass/foundation/util/_breakpoint.scss +275 -0
  144. data/_sass/foundation/util/_color.scss +60 -0
  145. data/_sass/foundation/util/_flex.scss +68 -0
  146. data/_sass/foundation/util/_mixins.scss +235 -0
  147. data/_sass/foundation/util/_selector.scss +40 -0
  148. data/_sass/foundation/util/_unit.scss +90 -0
  149. data/_sass/foundation/util/_util.scss +11 -0
  150. data/_sass/foundation/util/_value.scss +107 -0
  151. data/_sass/main.scss +40 -0
  152. data/_sass/minima.scss +51 -0
  153. data/_sass/minima/_base.scss +254 -0
  154. data/_sass/minima/_layout.scss +255 -0
  155. data/_sass/minima/_syntax-highlighting.scss +71 -0
  156. data/_sass/objects/media.scss +55 -0
  157. data/_sass/objects/section.scss +247 -0
  158. data/_sass/objects/space.scss +7 -0
  159. data/_sass/scroll-top.scss +31 -0
  160. data/_sass/utilities/utilities.scss +190 -0
  161. data/assets/css/main.scss +110 -0
  162. data/assets/favicon/apple-touch-icon-114x114.png +0 -0
  163. data/assets/favicon/apple-touch-icon-120x120.png +0 -0
  164. data/assets/favicon/apple-touch-icon-144x144.png +0 -0
  165. data/assets/favicon/apple-touch-icon-152x152.png +0 -0
  166. data/assets/favicon/apple-touch-icon-57x57.png +0 -0
  167. data/assets/favicon/apple-touch-icon-60x60.png +0 -0
  168. data/assets/favicon/apple-touch-icon-72x72.png +0 -0
  169. data/assets/favicon/apple-touch-icon-76x76.png +0 -0
  170. data/assets/favicon/favicon-128.png +0 -0
  171. data/assets/favicon/favicon-16x16.png +0 -0
  172. data/assets/favicon/favicon-196x196.png +0 -0
  173. data/assets/favicon/favicon-32x32.png +0 -0
  174. data/assets/favicon/favicon-96x96.png +0 -0
  175. data/assets/favicon/favicon.ico +0 -0
  176. data/assets/favicon/mstile-144x144.png +0 -0
  177. data/assets/favicon/mstile-150x150.png +0 -0
  178. data/assets/favicon/mstile-310x150.png +0 -0
  179. data/assets/favicon/mstile-310x310.png +0 -0
  180. data/assets/favicon/mstile-70x70.png +0 -0
  181. data/assets/fonts/bebasneue_regular-webfont.eot +0 -0
  182. data/assets/fonts/bebasneue_regular-webfont.svg +3906 -0
  183. data/assets/fonts/bebasneue_regular-webfont.ttf +0 -0
  184. data/assets/fonts/bebasneue_regular-webfont.woff +0 -0
  185. data/assets/fonts/bebasneue_regular-webfont.woff2 +0 -0
  186. data/assets/icons/blog.png +0 -0
  187. data/assets/icons/compass.png +0 -0
  188. data/assets/icons/facebook.png +0 -0
  189. data/assets/icons/github.png +0 -0
  190. data/assets/icons/googleplus.png +0 -0
  191. data/assets/icons/instagram.png +0 -0
  192. data/assets/icons/linkedin.png +0 -0
  193. data/assets/icons/pinterest.png +0 -0
  194. data/assets/icons/piratewiki.png +0 -0
  195. data/assets/icons/redmine.png +0 -0
  196. data/assets/icons/twitter.png +0 -0
  197. data/assets/icons/vkontakte.png +0 -0
  198. data/assets/icons/youtube.png +0 -0
  199. data/assets/img/brand/logo-group.png +0 -0
  200. data/assets/img/brand/logo-group.svg +27 -0
  201. data/assets/img/brand/logo-round.png +0 -0
  202. data/assets/img/brand/logo-round.svg +104 -0
  203. data/assets/img/brand/logo.ai +5083 -16
  204. data/assets/img/brand/logo.pdf +1405 -4
  205. data/assets/img/brand/logo.png +0 -0
  206. data/assets/img/brand/logo.svg +10 -0
  207. data/assets/img/brand/logo_easy.png +0 -0
  208. data/assets/img/brand/logo_napis.ai +5003 -21
  209. data/assets/img/brand/logo_napis.pdf +1482 -3
  210. data/assets/img/brand/logo_napis.png +0 -0
  211. data/assets/img/brand/logo_napis.svg +48 -0
  212. data/assets/img/brand/logo_napis_male.png +0 -0
  213. data/assets/img/brand/logo_napis_white.ai +5106 -16
  214. data/assets/img/brand/logo_napis_white.pdf +1532 -2
  215. data/assets/img/brand/logo_napis_white.png +0 -0
  216. data/assets/img/brand/logo_napis_white.svg +51 -0
  217. data/assets/img/brand/logo_white.ai +5194 -23
  218. data/assets/img/brand/logo_white.pdf +1388 -4
  219. data/assets/img/brand/logo_white.png +0 -0
  220. data/assets/img/brand/logo_white.svg +14 -0
  221. data/assets/img/brand/logotyp_email.png +0 -0
  222. data/assets/img/brand/logow.svg +19 -0
  223. data/assets/img/header/background.jpg +0 -0
  224. data/assets/img/people/jakub-pirat.jpg +0 -0
  225. data/assets/img/posts/obrazek.u.tohoto.postu.jpg +0 -0
  226. data/assets/img/tiles/lightGrey.png +0 -0
  227. data/assets/img/tiles/tableOfContent.png +0 -0
  228. data/assets/js/common-libs.min.js +1 -0
  229. data/assets/js/custom.min.js +1 -0
  230. data/assets/people/piratska-strana.png +0 -0
  231. data/assets/people/ppp.jpg +0 -0
  232. metadata +316 -0
@@ -0,0 +1,60 @@
1
+ .highlight { background: #ffffff; }
2
+ .highlight .c { color: #999988; font-style: italic } /* Comment */
3
+ .highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
4
+ .highlight .k { font-weight: bold } /* Keyword */
5
+ .highlight .o { font-weight: bold } /* Operator */
6
+ .highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
7
+ .highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
8
+ .highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
9
+ .highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
10
+ .highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
11
+ .highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
12
+ .highlight .ge { font-style: italic } /* Generic.Emph */
13
+ .highlight .gr { color: #aa0000 } /* Generic.Error */
14
+ .highlight .gh { color: #999999 } /* Generic.Heading */
15
+ .highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
16
+ .highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
17
+ .highlight .go { color: #888888 } /* Generic.Output */
18
+ .highlight .gp { color: #555555 } /* Generic.Prompt */
19
+ .highlight .gs { font-weight: bold } /* Generic.Strong */
20
+ .highlight .gu { color: #aaaaaa } /* Generic.Subheading */
21
+ .highlight .gt { color: #aa0000 } /* Generic.Traceback */
22
+ .highlight .kc { font-weight: bold } /* Keyword.Constant */
23
+ .highlight .kd { font-weight: bold } /* Keyword.Declaration */
24
+ .highlight .kp { font-weight: bold } /* Keyword.Pseudo */
25
+ .highlight .kr { font-weight: bold } /* Keyword.Reserved */
26
+ .highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
27
+ .highlight .m { color: #009999 } /* Literal.Number */
28
+ .highlight .s { color: #d14 } /* Literal.String */
29
+ .highlight .na { color: #008080 } /* Name.Attribute */
30
+ .highlight .nb { color: #0086B3 } /* Name.Builtin */
31
+ .highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
32
+ .highlight .no { color: #008080 } /* Name.Constant */
33
+ .highlight .ni { color: #800080 } /* Name.Entity */
34
+ .highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
35
+ .highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
36
+ .highlight .nn { color: #555555 } /* Name.Namespace */
37
+ .highlight .nt { color: #000080 } /* Name.Tag */
38
+ .highlight .nv { color: #008080 } /* Name.Variable */
39
+ .highlight .ow { font-weight: bold } /* Operator.Word */
40
+ .highlight .w { color: #bbbbbb } /* Text.Whitespace */
41
+ .highlight .mf { color: #009999 } /* Literal.Number.Float */
42
+ .highlight .mh { color: #009999 } /* Literal.Number.Hex */
43
+ .highlight .mi { color: #009999 } /* Literal.Number.Integer */
44
+ .highlight .mo { color: #009999 } /* Literal.Number.Oct */
45
+ .highlight .sb { color: #d14 } /* Literal.String.Backtick */
46
+ .highlight .sc { color: #d14 } /* Literal.String.Char */
47
+ .highlight .sd { color: #d14 } /* Literal.String.Doc */
48
+ .highlight .s2 { color: #d14 } /* Literal.String.Double */
49
+ .highlight .se { color: #d14 } /* Literal.String.Escape */
50
+ .highlight .sh { color: #d14 } /* Literal.String.Heredoc */
51
+ .highlight .si { color: #d14 } /* Literal.String.Interpol */
52
+ .highlight .sx { color: #d14 } /* Literal.String.Other */
53
+ .highlight .sr { color: #009926 } /* Literal.String.Regex */
54
+ .highlight .s1 { color: #d14 } /* Literal.String.Single */
55
+ .highlight .ss { color: #990073 } /* Literal.String.Symbol */
56
+ .highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
57
+ .highlight .vc { color: #008080 } /* Name.Variable.Class */
58
+ .highlight .vg { color: #008080 } /* Name.Variable.Global */
59
+ .highlight .vi { color: #008080 } /* Name.Variable.Instance */
60
+ .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
@@ -0,0 +1,25 @@
1
+ $icon-ns: '';
2
+
3
+ .#{$icon-ns}c-icon {
4
+ font-size: 1.3rem;
5
+ width: 40px;
6
+ height: 40px;
7
+ text-align: center;
8
+ line-height: 40px;
9
+ }
10
+
11
+ .#{$icon-ns}c-icon.#{$icon-ns}c-icon--facebook {
12
+ background: #1672b9;
13
+ }
14
+
15
+ .#{$icon-ns}c-icon.#{$icon-ns}c-icon--twitter {
16
+ background: #91cfff;
17
+ }
18
+
19
+ .#{$icon-ns}c-icon.#{$icon-ns}c-icon--googlePlus {
20
+ background: #cc0303;
21
+ }
22
+
23
+ .#{$icon-ns}c-icon.#{$icon-ns}c-icon--rounded {
24
+ border-radius: 20px;
25
+ }
@@ -0,0 +1,75 @@
1
+ .pagination {
2
+ display: flex;
3
+ align-items: center;
4
+ flex-wrap: wrap;
5
+ justify-content: center;
6
+
7
+ li {
8
+ margin: 3px;
9
+ align-items: center;
10
+ flex-wrap: wrap;
11
+ justify-content: center;
12
+ min-width: 2.75rem;
13
+ text-align: center;
14
+ height: 3rem;
15
+ line-height: 3rem; //.disabled v sobe nema <a>
16
+
17
+ a {
18
+ height: 3rem;
19
+ line-height: 3rem;
20
+ width: 100%;
21
+ color: $primary-color;
22
+ }
23
+ a:hover {
24
+ background: transparent;
25
+ text-decoration: none;
26
+ }
27
+
28
+ @include breakpoint(mobile down) {
29
+ height: 2.7rem;
30
+ line-height: 2.7rem;
31
+ margin: 1px;
32
+
33
+ a {
34
+ height: 2.7rem;
35
+ line-height: 2.7rem;
36
+ }
37
+ }
38
+
39
+ @if $pagination-mobile-items {
40
+ display: flex;
41
+ }
42
+ @else {
43
+ display: none;
44
+
45
+ &:last-child,
46
+ &:first-child {
47
+ display: flex;
48
+ }
49
+
50
+ @include breakpoint(medium) {
51
+ display: flex;
52
+ }
53
+ }
54
+ }
55
+
56
+ .pagination-previous,
57
+ .pagination-next {
58
+ background: $primary-color;
59
+ font-size: 1.5rem; //.disabled v sobe nema <a>
60
+ padding: 0 10px;
61
+ a {
62
+ text-decoration: none;
63
+ color: #fefefe;
64
+ }
65
+ box-shadow: 0px 3px 2px #ececec;
66
+ }
67
+
68
+ a {
69
+ text-decoration: underline;
70
+ }
71
+
72
+ .pagination-previous i,
73
+ .pagination-next i {
74
+ }
75
+ }
@@ -0,0 +1,97 @@
1
+ .pricing-table {
2
+ border: solid 1px #DDDDDD;
3
+ background: #eee
4
+ }
5
+
6
+ .pricing-table li {
7
+ border-bottom: dotted 1px #DDDDDD;
8
+ /*font-size: 0.75rem;*/
9
+ padding: 0.875rem 1.125rem;
10
+ }
11
+
12
+ .pricing-table li:last-child {
13
+ border-bottom: 0;
14
+ }
15
+
16
+ .pricing-table .title {
17
+ background-color: red;
18
+ color: #EEEEEE;
19
+ font-size: 0.875rem;
20
+ border-bottom: 0;
21
+ }
22
+
23
+ .pricing-table .price {
24
+ color: #333333;
25
+ font-size: 1.75rem;
26
+ border-bottom: 0;
27
+ }
28
+
29
+ .pricing-table .description {
30
+ color: #777777;
31
+ /* font-size: 0.625rem;*/
32
+ }
33
+
34
+ .pricing-table .small {
35
+ color: #777777;
36
+ font-size: 0.625rem;
37
+ text-align:right;
38
+ }
39
+
40
+ #mc_embed_signup label {
41
+ font-size: 1rem;
42
+ }
43
+
44
+ .pricing-table .button {
45
+ margin: 0;
46
+ }
47
+
48
+ .pricing-table .pricing-table-header-img {
49
+ padding:0px;
50
+ margin:0px;
51
+ height:98px;
52
+ background-position: 55% 0px;
53
+ background-repeat:no-repeat;
54
+ }
55
+
56
+ #tabs {
57
+ padding: 0px;
58
+ background: none;
59
+ border-width: 0px;
60
+ }
61
+
62
+ tabs .ui-tabs-nav {
63
+ padding-left: 0px;
64
+ background: transparent;
65
+ border-width: 0px 0px 1px 0px;
66
+ -moz-border-radius: 0px;
67
+ -webkit-border-radius: 0px;
68
+ border-radius: 0px;
69
+ }
70
+
71
+ .ui-tabs .ui-tabs-nav li {
72
+ margin-right: 0.34em;
73
+ background: #eee;
74
+ }
75
+
76
+ .ui-state-active, a.ui-button:active, .ui-button:active,
77
+ .ui-button.ui-state-active:hover {
78
+ background: #007fff !important;
79
+ }
80
+
81
+ #tabs .ui-tabs-panel {
82
+ background: #eee;
83
+ border-width: 0px 1px 1px 1px;
84
+ }
85
+
86
+ .asterisk {
87
+ color:red
88
+ }
89
+
90
+ #mc_embed_signup_scroll .c-cta-button--primary {
91
+ color: rgb(255, 255, 255);
92
+ background-color: rgb(92, 184, 92);
93
+ border-color: rgb(92, 184, 92);
94
+ width:100%;
95
+ text-align:center;
96
+ margin-top:10px;
97
+ }
@@ -0,0 +1,32 @@
1
+
2
+ .scrolltop {
3
+ display:none;
4
+ width:100%;
5
+ margin:0 auto;
6
+ position:fixed;
7
+ bottom:20px;
8
+ right:10px;
9
+ z-index:1;
10
+ }
11
+ .scroll {
12
+ position:absolute;
13
+ right:20px;
14
+ bottom:20px;
15
+ background:#b2b2b2;
16
+ background:$light-gray;
17
+ padding:20px;
18
+ text-align: center;
19
+ margin: 0 0 0 0;
20
+ cursor:pointer;
21
+ transition: 0.5s;
22
+ -moz-transition: 0.5s;
23
+ -webkit-transition: 0.5s;
24
+ -o-transition: 0.5s;
25
+ }
26
+ .scroll:hover {
27
+ background:$medium-gray;
28
+ transition: 0.5s;
29
+ -moz-transition: 0.5s;
30
+ -webkit-transition: 0.5s;
31
+ -o-transition: 0.5s;
32
+ }
@@ -0,0 +1,85 @@
1
+ .c-simple-accordion {
2
+ border: 0 !important; // Because of Foundation's bloat
3
+ @include accordion-container;
4
+ }
5
+
6
+ .c-simple-accordion.c-simple-accordion--nomargin {
7
+ margin-bottom: 0;
8
+ }
9
+
10
+
11
+ .c-simple-accordion.c-simple-accordion--nomargin :last-child>.c-simple-accordion-content:last-child {
12
+ padding-bottom: 0;
13
+ }
14
+
15
+ .c-simple-accordion-item {
16
+ &:before {
17
+ content: '' !important;
18
+ display: none !important;
19
+ }
20
+ @include accordion-item;
21
+
22
+ &.is-active .c-simple-accordion-title:before {
23
+ line-height: 15px;
24
+ }
25
+ }
26
+
27
+ .c-simple-accordion-title {
28
+ @include accordion-title;
29
+ display: inline-block;
30
+ padding-left: 2.5rem;
31
+ font-size: 1.75rem !important;
32
+ color: $body-font-color;
33
+ text-decoration: none !important;
34
+ background: #fff;
35
+ border: none;
36
+
37
+ &:hover,
38
+ &:focus {
39
+ color: $body-font-color;
40
+ text-decoration: none !important;
41
+ background: #FFF;
42
+ }
43
+
44
+ &:before {
45
+ border-radius: 3px;
46
+ display: inline-block;
47
+ width: 22px;
48
+ height: 22px;
49
+ line-height: 20px;
50
+ right: auto;
51
+ left: 0;
52
+ margin-top: auto;
53
+ transform: translateY(-50%);
54
+ color: #fff;
55
+ background: $primary-color;
56
+ font-size: 1.75rem;
57
+ text-align: center;
58
+ }
59
+ }
60
+
61
+ .c-simple-accordion-content {
62
+ border: 0 !important; // Because of Foundation's bloat, again
63
+ @include accordion-content;
64
+ padding-top: 1rem;
65
+ padding-bottom: 1rem;
66
+ padding-left: 0;
67
+ padding-right: 0;
68
+
69
+ h3 {
70
+ color: $primary-color;
71
+ font-size: 1.45rem;
72
+ margin-bottom: 1.2em;
73
+ }
74
+ }
75
+
76
+ .c-simple-accordion-content-block + .c-simple-accordion-content-block {
77
+ margin-top: 3rem;
78
+ @include breakpoint(mobile down) {
79
+ margin-top: 2rem;
80
+ }
81
+ }
82
+
83
+ :last-child:not(.is-active)>.c-simple-accordion-title {
84
+ border: none;
85
+ }
@@ -0,0 +1,30 @@
1
+ .c-tag {
2
+ font-size: 0.85rem;
3
+ color: $primary-color;
4
+ border: 1px solid $primary-color;
5
+ border-radius: 2px;
6
+ display: inline-block;
7
+ text-decoration: none;
8
+ padding: 0px 4px;
9
+ transition: 0.25s background;
10
+ background: #fff;
11
+ }
12
+
13
+ .c-tag:hover,
14
+ .c-tag.is-active {
15
+ background: #e5f4ff;
16
+ }
17
+
18
+ .c-tag-list {
19
+ display: inline-block;
20
+ margin-left: 0.5rem;
21
+ list-stype-type: none;
22
+
23
+ li {
24
+ display: inline-block;
25
+ }
26
+
27
+ li + li {
28
+ margin-left: 0.45rem;
29
+ }
30
+ }
@@ -0,0 +1,492 @@
1
+ .c-top-bar {
2
+ position: relative;
3
+ @include top-bar-container;
4
+ }
5
+
6
+ .c-top-bar-border {
7
+ display: block;
8
+ height: 5px;
9
+ margin-top: -3px;
10
+ background: #f3f3f3;
11
+ position: relative;
12
+ z-index: 9;
13
+ }
14
+
15
+ .c-top-bar .c-top-bar-inner {
16
+ padding: 0 30px 0 20px;
17
+
18
+ @include breakpoint(large down) {
19
+ padding: 0 30px 0 10px;
20
+ }
21
+
22
+ @include breakpoint(medium down) {
23
+ padding: 0 5px;
24
+ }
25
+
26
+ .top-bar-title {
27
+ margin-right: 4.5rem;
28
+ }
29
+
30
+ .top-bar-title img {
31
+ max-width: 40px;
32
+ margin-left: 10px;
33
+ }
34
+
35
+ @include breakpoint(large) {
36
+ .top-bar-title img {
37
+ transform: scale(1.3);
38
+ transform-origin: left center;
39
+ }
40
+ }
41
+ }
42
+
43
+ .c-top-bar {
44
+
45
+ .c-top-bar-searchbar {
46
+ padding-bottom: 1px;
47
+ border-bottom: 1px solid #e1e1e1;
48
+ }
49
+
50
+ .c-top-bar-searchbar input {
51
+ background: #fff;
52
+ border: 0;
53
+ outline: none;
54
+ box-shadow: none;
55
+ }
56
+
57
+ .c-top-bar-searchbar button {
58
+ background: #fff;
59
+ color: #343434;
60
+ margin-right: -1rem;
61
+ padding-bottom: 1px;
62
+ }
63
+
64
+ /*
65
+ @media screen and (min-width: 1024px) and (max-width: 1200px) {
66
+ .c-top-bar-searchbar {
67
+ display: none;
68
+ }
69
+ }
70
+ */
71
+ }
72
+
73
+ .c-top-bar {
74
+
75
+ .menu-toggle-container {
76
+ float: right;
77
+ }
78
+
79
+ .menu-toggle-container .menu-toggle-inner {
80
+ display: inline-block;
81
+ padding: 0.7rem 1.25rem;
82
+ font-size: 1.15rem;
83
+ border: 1px solid #e1e1e1;
84
+ text-transform: uppercase;
85
+ transition: border 0.2s;
86
+
87
+ &:hover {
88
+ border: 1px solid #343434;
89
+ }
90
+ }
91
+
92
+ .menu-toggle-container > span button {
93
+ vertical-align: top;
94
+ padding-bottom: 1px;
95
+ @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
96
+ &:active {
97
+ position: relative;
98
+ top: -1px;
99
+ left: -1px;
100
+ }
101
+ }
102
+ }
103
+
104
+ .menu-toggle-container > span button .menu-toggle-description {
105
+ vertical-align: middle;
106
+ margin-right: 5px;
107
+ }
108
+
109
+ .menu-toggle-container > span.js-button-toggled button .menu-icon:after {
110
+ box-shadow: none;
111
+ background: transparent;
112
+ font-family: 'FontAwesome';
113
+ content: '\f00d';
114
+ font-style: normal;
115
+ height: 100%;
116
+ top: -1px;
117
+ font-size: 1.3rem;
118
+ }
119
+
120
+ .menu a {
121
+ position: relative;
122
+ color: #343434;
123
+ text-transform: uppercase;
124
+ font-size: 1.15rem;
125
+ transition: color 0.2s;
126
+ padding: 0.7rem 1.25rem;
127
+
128
+ &:after {
129
+ content: '';
130
+ display: block;
131
+ position: absolute;
132
+ bottom: 0;
133
+ left: 1rem;
134
+ right: 1rem;
135
+ height: 4px;
136
+ background: transparent;
137
+ transition: background 0.2s;
138
+ }
139
+
140
+ }
141
+
142
+
143
+ .dropdown.menu > {
144
+
145
+ li + li > a::before {
146
+ content: '/';
147
+ width: 12px;
148
+ display: inline-block;
149
+ position: absolute;
150
+ top: 0.5rem;
151
+ left: 0rem;
152
+ transform: translateX(-50%);
153
+ font-size: 1.7rem;
154
+ color: #ededed;
155
+ border: 0px solid transparent;
156
+ margin-top: 0;
157
+ }
158
+
159
+ li:first-child a {
160
+
161
+ }
162
+
163
+ }
164
+
165
+ .menu a:hover,
166
+ .menu .is-active > a,
167
+ .dropdown.menu > li.is-dropdown-submenu-parent a:hover {
168
+ color: #f3c289;
169
+
170
+ &:after {
171
+ background: #f3c289;
172
+ }
173
+ }
174
+
175
+ .dropdown.menu > li.is-dropdown-submenu-parent > a {
176
+ padding-right: 1.25rem;
177
+ }
178
+
179
+ .dropdown.menu > li.is-dropdown-submenu-parent > a:after {
180
+ content: '';
181
+ display: block;
182
+ position: absolute;
183
+ width: auto;
184
+ bottom: 0;
185
+ left: 1rem;
186
+ right: 1rem;
187
+ height: 4px;
188
+ background: transparent;
189
+ -webkit-transition: background 0.2s;
190
+ transition: background 0.2s;
191
+ border: none;
192
+ }
193
+
194
+ .is-dropdown-submenu-parent a::after {
195
+ position: absolute;
196
+ top: auto;
197
+ right: 1rem;
198
+ margin-top: 0;
199
+ }
200
+
201
+ .dropdown.menu > li.opens-right > .is-dropdown-submenu {
202
+ right: auto;
203
+ left: 50%;
204
+ top: calc(100% + 1rem);
205
+ transform: translateX(-50%);
206
+ padding: 1rem 0.7rem;
207
+ background: #e1e1e1;
208
+ border: 0;
209
+
210
+ a:hover {
211
+ color: darken(#f3c289, 5%);
212
+ &:after {
213
+ content: none;
214
+ }
215
+ }
216
+
217
+ }
218
+
219
+ .dropdown.menu > li.opens-right > .is-dropdown-submenu:before {
220
+ content: '';
221
+ position: absolute;
222
+ top: -8px;
223
+ left: 50%;
224
+ transform: translateX(-50%);
225
+ width: 0;
226
+ height: 0;
227
+ border-left: 25px solid transparent;
228
+ border-right: 25px solid transparent;
229
+ border-bottom: 15px solid #e1e1e1;
230
+ }
231
+ }
232
+
233
+ [data-dropdown-menu] ul {
234
+ display: none;
235
+ }
236
+
237
+ .c-top-bar .c-top-bar-menu {
238
+ width: 100%;
239
+
240
+ @include breakpoint(medium down) {
241
+ display: none;
242
+
243
+ .responsive-menu-inner {
244
+ display: table;
245
+ width: 100%;
246
+ }
247
+
248
+ }
249
+
250
+ }
251
+
252
+ .c-top-bar .c-top-bar-menu {
253
+ display: none;
254
+
255
+ @include breakpoint(medium down) {
256
+ display: block;
257
+ position: absolute;
258
+ top: 100%;
259
+ left: 0;
260
+ right: 0;
261
+ background: #e1e1e1;
262
+
263
+ ul {
264
+ background: #e1e1e1;
265
+ }
266
+
267
+ box-sizing: border-box;
268
+ z-index: 10;
269
+ width: 100%;
270
+
271
+ .top-bar-left,
272
+ .top-bar-right {
273
+ float: none;
274
+ }
275
+
276
+ .top-bar-header-group{
277
+ display: table-header-group;
278
+ }
279
+
280
+ .top-bar-footer-group{
281
+ display: table-footer-group;
282
+ }
283
+
284
+ .dropdown.menu {
285
+
286
+ li + li > a::before {
287
+ content: '';
288
+ box-sizing: border-box;
289
+ width: calc(100% - 3.6rem);
290
+ height: 1px;
291
+ display: inline-block;
292
+ position: absolute;
293
+ top: 0;
294
+ left: 1.8rem;
295
+ transform: none;
296
+ background: #d3d3d3;
297
+ }
298
+ }
299
+
300
+ .menu li {
301
+ display: block;
302
+ }
303
+
304
+ .menu a {
305
+ }
306
+
307
+ .menu a {
308
+ position: relative;
309
+ color: #343434;
310
+ text-transform: uppercase;
311
+ font-size: 1.15rem;
312
+ transition: color 0.2s;
313
+ padding: 1rem 1.8rem;
314
+
315
+ &:before {
316
+ content: none;
317
+ display: block;
318
+ }
319
+
320
+ }
321
+
322
+ .menu a:hover,
323
+ .menu .is-active > a {
324
+ color: #f3c289;
325
+
326
+ &:before {
327
+ background: #f3c289;
328
+ }
329
+
330
+ &:after {
331
+ background: transparent;
332
+ }
333
+ }
334
+
335
+ .dropdown.menu > li.is-dropdown-submenu-parent a:hover:after {
336
+ background: transparent;
337
+ }
338
+
339
+ .menu li.is-dropdown-submenu-parent > a:after {
340
+ content: '\f196';
341
+ position: static;
342
+ display: inline-block;
343
+ font-size: 1rem;
344
+ margin-left: 5px;
345
+ font-family: 'FontAwesome';
346
+ border: 0;
347
+ line-height: 1;
348
+ height: auto;
349
+ }
350
+
351
+ .menu li.is-dropdown-submenu-parent.is-active > a:after {
352
+ content: '\f147';
353
+ }
354
+
355
+ .dropdown.menu > li > .is-dropdown-submenu.js-dropdown-active {
356
+ display: block;
357
+ position: static;
358
+ border: 0;
359
+ margin-left: 1.8rem;
360
+ margin-right: 1.8rem;
361
+ padding-top: 0.25rem;
362
+ padding-bottom: 0.25rem;
363
+ background: #ececec;
364
+ border-top: 1px solid #d3d3d3;
365
+ text-decoration: underline;
366
+
367
+ li {
368
+ padding-left: 0.5rem;
369
+ }
370
+
371
+ a {
372
+ text-transform: none;
373
+ padding: 1rem 0.5rem;
374
+ &:before {
375
+ visibility: hidden;
376
+ }
377
+ }
378
+
379
+ }
380
+
381
+ .dropdown.menu > li.is-dropdown-submenu-parent > a {
382
+ padding-right: 1.25rem;
383
+ }
384
+
385
+ .dropdown.menu > li.is-dropdown-submenu-parent > a:before {
386
+
387
+ }
388
+
389
+ .dropdown.menu > li.opens-right > .is-dropdown-submenu {
390
+ position: static;
391
+ background: #ececec;
392
+
393
+ a:hover {
394
+ color: darken(#f3c289, 5%);
395
+ &:before {
396
+ content: none;
397
+ }
398
+ }
399
+
400
+ }
401
+
402
+ .dropdown.menu > li.opens-right > .is-dropdown-submenu:before {
403
+ content: '';
404
+ position: absolute;
405
+ top: -8px;
406
+ left: 50%;
407
+ transform: translateX(-50%);
408
+ width: 0;
409
+ height: 0;
410
+ border-left: 25px solid transparent;
411
+ border-right: 25px solid transparent;
412
+ border-bottom: 15px solid #e1e1e1;
413
+ }
414
+
415
+ }
416
+
417
+ }
418
+
419
+
420
+ .c-top-bar {
421
+
422
+ .menu.c-top-bar-searchbar.c-top-bar-searchbar--asTitle {
423
+ display: inline-block;
424
+ float: left;
425
+ width: auto;
426
+ padding: 0;
427
+ }
428
+
429
+ @include breakpoint(large) {
430
+ .menu.c-top-bar-searchbar.c-top-bar-searchbar--asTitle {
431
+ display: inline-block;
432
+ float: right;
433
+ padding-bottom: 1px;
434
+ }
435
+
436
+ }
437
+
438
+ @include breakpoint(large) {
439
+ .c-top-bar-menu .top-bar-left > .menu > li:first-child a {
440
+ padding-left: 0rem;
441
+
442
+ &:after {
443
+ left: 0rem;
444
+ }
445
+ }
446
+ }
447
+
448
+ @include breakpoint(xlarge) {
449
+ .c-top-bar-menu .top-bar-left > .menu > li:first-child a {
450
+ padding-left: 0.65rem;
451
+
452
+ &:after {
453
+ left: 0.65rem;
454
+ }
455
+ }
456
+ }
457
+
458
+ @include breakpoint(medium down) {
459
+
460
+ .c-top-bar-searchbar.menu {
461
+ display: table;
462
+ width: 100%;
463
+ padding: 20px 1.8rem 10px 1.8rem;
464
+ }
465
+
466
+ .c-top-bar-searchbar.menu li {
467
+ display: table-cell;
468
+ height: 40px;
469
+ background: #fff;
470
+ }
471
+
472
+ .c-top-bar-searchbar input {
473
+ max-width: none;
474
+ }
475
+
476
+ .c-top-bar-searchbar .c-top-bar-searchbar__submit {
477
+ width: 40px;
478
+
479
+ button {
480
+ padding: 0em 1em;
481
+ font-size: 1.1rem;
482
+ margin-right: 0;
483
+ }
484
+ }
485
+
486
+ .c-top-bar-searchbar input,
487
+ .c-top-bar-searchbar button {
488
+ height: 100%;
489
+ }
490
+ }
491
+
492
+ }