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,14 @@
1
+ <ul class="social-media-list">
2
+ {%- if site.dribbble_username -%}<li><a href="https://dribbble.com/{{ site.dribbble_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#dribbble' | relative_url }}"></use></svg> <span class="username">{{ site.dribbble_username| escape }}</span></a></li>{%- endif -%}
3
+ {%- if site.facebook_username -%}<li><a href="https://www.facebook.com/{{ site.facebook_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#facebook' | relative_url }}"></use></svg> <span class="username">{{ site.facebook_username| escape }}</span></a></li>{%- endif -%}
4
+ {%- if site.flickr_username -%}<li><a href="https://www.flickr.com/photos/{{ site.flickr_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#flickr' | relative_url }}"></use></svg> <span class="username">{{ site.flickr_username| escape }}</span></a></li>{%- endif -%}
5
+ {%- if site.github_username -%}<li><a href="https://github.com/{{ site.github_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#github' | relative_url }}"></use></svg> <span class="username">{{ site.github_username| escape }}</span></a></li>{%- endif -%}
6
+ {%- if site.instagram_username -%}<li><a href="https://instagram.com/{{ site.instagram_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#instagram' | relative_url }}"></use></svg> <span class="username">{{ site.instagram_username| escape }}</span></a></li>{%- endif -%}
7
+ {%- if site.linkedin_username -%}<li><a href="https://www.linkedin.com/in/{{ site.linkedin_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#linkedin' | relative_url }}"></use></svg> <span class="username">{{ site.linkedin_username| escape }}</span></a></li>{%- endif -%}
8
+ {%- if site.pinterest_username -%}<li><a href="https://www.pinterest.com/{{ site.pinterest_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#pinterest' | relative_url }}"></use></svg> <span class="username">{{ site.pinterest_username| escape }}</span></a></li>{%- endif -%}
9
+ {%- for mst in site.mastodon -%}{%- if mst.username and mst.instance -%}<li><a href="https://{{ mst.instance| cgi_escape | escape}}/@{{mst.username}}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#mastodon' | relative_url }}"></use></svg> <span class="username">{{ mst.username|escape }}</span></a></li>{%- endif -%}{%- endfor -%}
10
+ {%- if site.twitter_username -%}<li><a href="https://www.twitter.com/{{ site.twitter_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#twitter' | relative_url }}"></use></svg> <span class="username">{{ site.twitter_username| escape }}</span></a></li>{%- endif -%}
11
+ {%- if site.youtube_username -%}<li><a href="https://youtube.com/{{ site.youtube_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#youtube' | relative_url }}"></use></svg> <span class="username">{{ site.youtube_username| escape }}</span></a></li>{%- endif -%}
12
+ {%- if site.googleplus_username -%}<li><a href="https://plus.google.com/{{ site.googleplus_username| escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#googleplus' | relative_url }}"></use></svg> <span class="username">{{ site.googleplus_username| escape }}</span></a></li>{%- endif -%}
13
+ {%- if site.rss -%}<li><a href="{{ 'feed.xml' | relative_url }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#rss' | relative_url }}"></use></svg> <span>{{ site.rss | escape }}</span></a></li>{%- endif -%}
14
+ </ul>
@@ -0,0 +1,22 @@
1
+ {% if page.url contains 'volby-2018' %}
2
+ <nav class="c-top-sub-nav u-center-860-down">
3
+ <div class="row">
4
+ <div class="c-top-sub-nav-inner">
5
+ <div class="u-cf">
6
+ <div class="c-top-sub-nav-header">
7
+ <div class="c-top-sub-nav__heading"> Volby 2018 </div>
8
+ </div>
9
+ <div class="c-top-sub-nav-divider"></div>
10
+ <ul class="c-top-sub-nav-items">
11
+ <li class="c-top-sub-nav__item">
12
+ <a href="{{'/volby-2018/index.html' | relative_url }}"> Program </a>
13
+ </li>
14
+ <li class="c-top-sub-nav__item">
15
+ <a href="{{'/volby-2018/kandidati.html' | relative_url }}"> Kandidáti </a>
16
+ </li>
17
+ </ul>
18
+ </div>
19
+ </div>
20
+ </div>
21
+ </nav>
22
+ {% endif %}
@@ -0,0 +1,9 @@
1
+ <div class="c-welcome-header">
2
+ <div class="row">
3
+ <div class="small-12 columns">
4
+ <div class="c-welcome-header-wrapper c-welcome-header-wrapper--wbg">
5
+ <span class="c-welcome-header-wrapper--title">{{ site.data.links.group.short_name }}</span>
6
+ </div>
7
+ </div>
8
+ </div>
9
+ </div>
@@ -0,0 +1,14 @@
1
+ ---
2
+ ---
3
+
4
+ <!DOCTYPE html>
5
+ <html lang="cs" dir="ltr" itemtype="http://schema.org/WebPage" itemscope="">
6
+ {% include head.html %}
7
+ <body>
8
+ <div class="page-content">
9
+ <div class="wrapper">
10
+ {{ content }}
11
+ </div>
12
+ </div>
13
+ </body>
14
+ </html>
@@ -0,0 +1,10 @@
1
+ ---
2
+ # Jekyll layout that compresses HTML
3
+ # v3.0.2
4
+ # http://jch.penibelst.de/
5
+ # © 2014–2015 Anatol Broder
6
+ # MIT License
7
+ ---
8
+
9
+ {% capture _LINE_FEED %}
10
+ {% endcapture %}{% if site.compress_html.ignore.envs contains jekyll.environment %}{{ content }}{% else %}{% capture _content %}{{ content }}{% endcapture %}{% assign _profile = site.compress_html.profile %}{% if site.compress_html.endings == "all" %}{% assign _endings = "html head body li dt dd p rt rp optgroup option colgroup caption thead tbody tfoot tr td th" | split: " " %}{% else %}{% assign _endings = site.compress_html.endings %}{% endif %}{% for _element in _endings %}{% capture _end %}</{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _end %}{% endfor %}{% if _profile and _endings %}{% assign _profile_endings = _content | size | plus: 1 %}{% endif %}{% for _element in site.compress_html.startings %}{% capture _start %}<{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _start %}{% endfor %}{% if _profile and site.compress_html.startings %}{% assign _profile_startings = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.comments == "all" %}{% assign _comments = "<!-- -->" | split: " " %}{% else %}{% assign _comments = site.compress_html.comments %}{% endif %}{% if _comments.size == 2 %}{% capture _comment_befores %}.{{ _content }}{% endcapture %}{% assign _comment_befores = _comment_befores | split: _comments.first %}{% for _comment_before in _comment_befores %}{% if forloop.first %}{% continue %}{% endif %}{% capture _comment_outside %}{% if _carry %}{{ _comments.first }}{% endif %}{{ _comment_before }}{% endcapture %}{% capture _comment %}{% unless _carry %}{{ _comments.first }}{% endunless %}{{ _comment_outside | split: _comments.last | first }}{% if _comment_outside contains _comments.last %}{{ _comments.last }}{% assign _carry = false %}{% else %}{% assign _carry = true %}{% endif %}{% endcapture %}{% assign _content = _content | remove_first: _comment %}{% endfor %}{% if _profile %}{% assign _profile_comments = _content | size | plus: 1 %}{% endif %}{% endif %}{% assign _pre_befores = _content | split: "<pre" %}{% assign _content = "" %}{% for _pre_before in _pre_befores %}{% assign _pres = _pre_before | split: "</pre>" %}{% assign _pres_after = "" %}{% if _pres.size != 0 %}{% if site.compress_html.blanklines %}{% assign _lines = _pres.last | split: _LINE_FEED %}{% capture _pres_after %}{% for _line in _lines %}{% assign _trimmed = _line | split: " " | join: " " %}{% if _trimmed != empty or forloop.last %}{% unless forloop.first %}{{ _LINE_FEED }}{% endunless %}{{ _line }}{% endif %}{% endfor %}{% endcapture %}{% else %}{% assign _pres_after = _pres.last | split: " " | join: " " %}{% endif %}{% endif %}{% capture _content %}{{ _content }}{% if _pre_before contains "</pre>" %}<pre{{ _pres.first }}</pre>{% endif %}{% unless _pre_before contains "</pre>" and _pres.size == 1 %}{{ _pres_after }}{% endunless %}{% endcapture %}{% endfor %}{% if _profile %}{% assign _profile_collapse = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.clippings == "all" %}{% assign _clippings = "html head title base link meta style body article section nav aside h1 h2 h3 h4 h5 h6 hgroup header footer address p hr blockquote ol ul li dl dt dd figure figcaption main div table caption colgroup col tbody thead tfoot tr td th" | split: " " %}{% else %}{% assign _clippings = site.compress_html.clippings %}{% endif %}{% for _element in _clippings %}{% assign _edges = " <e;<e; </e>;</e>;</e> ;</e>" | replace: "e", _element | split: ";" %}{% assign _content = _content | replace: _edges[0], _edges[1] | replace: _edges[2], _edges[3] | replace: _edges[4], _edges[5] %}{% endfor %}{% if _profile and _clippings %}{% assign _profile_clippings = _content | size | plus: 1 %}{% endif %}{{ _content }}{% if _profile %} <table id="compress_html_profile_{{ site.time | date: "%Y%m%d" }}" class="compress_html_profile"> <thead> <tr> <td>Step <td>Bytes <tbody> <tr> <td>raw <td>{{ content | size }}{% if _profile_endings %} <tr> <td>endings <td>{{ _profile_endings }}{% endif %}{% if _profile_startings %} <tr> <td>startings <td>{{ _profile_startings }}{% endif %}{% if _profile_comments %} <tr> <td>comments <td>{{ _profile_comments }}{% endif %}{% if _profile_collapse %} <tr> <td>collapse <td>{{ _profile_collapse }}{% endif %}{% if _profile_clippings %} <tr> <td>clippings <td>{{ _profile_clippings }}{% endif %} </table>{% endif %}{% endif %}
@@ -0,0 +1,23 @@
1
+ ---
2
+ ---
3
+
4
+ <!DOCTYPE html>
5
+ <html lang="cs" dir="ltr" itemtype="http://schema.org/WebPage" itemscope="">
6
+
7
+ {% include head.html %}
8
+
9
+ <body>
10
+
11
+ {% include header.html %}
12
+
13
+ <div class="page-content">
14
+ <div class="wrapper">
15
+ {{ content }}
16
+ </div>
17
+ </div>
18
+
19
+ {% include footer.html %}
20
+ {% include js/main.html %}
21
+ </body>
22
+
23
+ </html>
@@ -0,0 +1,34 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="home">
6
+ {%- if page.title -%}
7
+ <h1 class="page-heading">{{ page.title }}</h1>
8
+ {%- endif -%}
9
+
10
+ {{ content }}
11
+
12
+ {%- if site.posts.size > 0 -%}
13
+ <h2 class="post-list-heading">{{ page.list_title | default: "Posts" }}</h2>
14
+ <ul class="post-list">
15
+ {%- for post in site.posts -%}
16
+ <li>
17
+ {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
18
+ <span class="post-meta">{{ post.date | date: date_format }}</span>
19
+ <h3>
20
+ <a class="post-link" href="{{ post.url | relative_url }}">
21
+ {{ post.title | escape }}
22
+ </a>
23
+ </h3>
24
+ {%- if site.show_excerpts -%}
25
+ {{ post.excerpt }}
26
+ {%- endif -%}
27
+ </li>
28
+ {%- endfor -%}
29
+ </ul>
30
+
31
+ <p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | relative_url }}">via RSS</a></p>
32
+ {%- endif -%}
33
+
34
+ </div>
@@ -0,0 +1,34 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {%unless page.nomenu%}
6
+ {% include submenu.html %}
7
+ {% endunless%}
8
+
9
+ <div class="row">
10
+ <div class="medium-12 {% if page.rbar == empty %}large-12{% else%}large-8{%endif%} columns">
11
+ <div class="o-section o-section--spaceBot">
12
+ <div class="o-section-inner">
13
+ <main class="o-section-block">
14
+ <!-- Article -->
15
+ <article itemtype="http://schema.org/BlogPosting" class="c-BasicPage" itemscope="">
16
+ <link itemprop="mainEntityOfPage" href="http://insertshownpagelinkhere.com">
17
+ <h1 itemprop="headline" class="c-BasicPage__title">
18
+ {%if page.fullname%}{{page.fullname}}{%else%}{{page.title}}{%endif%}
19
+ </h1>
20
+ <div itemprop="description" class="c-BasicPage-content">
21
+ {{content}}
22
+ </div>
23
+ </article>
24
+ <!-- /Article -->
25
+ </main>
26
+ </div>
27
+ </div>
28
+ </div>
29
+ {% unless page.rbar == blank %}
30
+ <div class="medium-12 large-4 columns">
31
+ {% include right-bar/rbar.html %}
32
+ </div>
33
+ {% endunless %}
34
+ </div>
@@ -0,0 +1,110 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <article itemtype="http://schema.org/BlogPosting" class="c-BasicPage" itemscope="">
6
+ <div class="row">
7
+ <div class="medium-12 columns">
8
+ <div class="o-section o-section--noSpaceBottom">
9
+ <div class="">
10
+ <div class="o-section-block o-section-block--fill">
11
+ <div class="o-section-inner">
12
+ <div class="medium-12 columns">
13
+ <!-- Article -->
14
+ <link itemprop="mainEntityOfPage" href="http://insertshownpagelinkhere.com">
15
+ <header class="c-BasicPage-header">
16
+ <h1 itemprop="headline" class="c-BasicPage__title"> {{page.title}} </h1>
17
+ <div class="c-BasicPage__meta">
18
+ <span itemprop="description" class="c-BasicPage__datePublished">
19
+ <i class="fa fa-calendar-o" aria-hidden="true"></i> {{page.date | date: "%d. %m. %Y" }}
20
+ <meta itemprop="datePublished" content="{{page.date | date_to_xmlschema }}">
21
+ <meta itemprop="dateModified" content=""> </span>
22
+ <br class="hide-for-medium">
23
+ <!-- Authors -->
24
+ <span itemprop="author" itemtype="http://schema.org/Person" class="c-BasicPage__authors" itemscope="">
25
+ <i class="fa fa-user" aria-hidden="true"></i>
26
+ <span itemprop="name" class="c-BlogPosting-excerpt__author">{{page.author}}</span>
27
+ </span>
28
+ {% if page.tags %}
29
+ <div class="c-BasicPage-tags">
30
+ <span class="c-BasicPage-tags__headline">Tagy</span>
31
+ <ul class="c-tag-list">
32
+ {% for tag in page.tags %}
33
+ <li>
34
+ <a href="{{ tag | prepend: '/tags/#' | relative_url }}" class="c-tag">{{tag}}</a>
35
+ </li>
36
+ {% endfor %}
37
+ </ul>
38
+ </div>
39
+ {% endif %}
40
+ </div>
41
+ </header>
42
+ </div>
43
+ </div>
44
+ </div>
45
+ </div>
46
+ </div>
47
+ </div>
48
+ </div>
49
+ {% if page.image %}
50
+ <div class="o-section-block o-section-block-fill">
51
+ <div class="c-BasicPage-headline-img">
52
+ <div class="c-BasicPage-headline-bg">
53
+ <img src="{{ page.image | relative_url }}" alt="{{page.title}}"> </div>
54
+ <div class="row small-collapse medium-uncollapse">
55
+ <div class="small-12 columns">
56
+ <div class="o-section-inner--medium">
57
+ <img src="{{ page.image | relative_url }}" alt="{{page.title}}"> </div>
58
+ </div>
59
+ </div>
60
+ </div>
61
+ </div>
62
+ {% endif %}
63
+ <div class="row o-section-block">
64
+ <div class="small-12 columns">
65
+ <div class="o-section o-section--noSpaceBottom">
66
+ <div class="">
67
+ <div class="o-section-block o-section-block--fill">
68
+ <div class="o-section-inner">
69
+ <div class="medium-12 large-8 columns">
70
+ <div itemprop="description" class="c-BasicPage-content">
71
+ {{content}}
72
+ </div>
73
+ </div>
74
+ <div class="medium-12 large-4 columns">
75
+ <div class="c-widget-share-box c-widget-share-box--mediumstacked">
76
+ <div class="c-widget-share-box-headline">Sdílení je aktem lásky</div>
77
+ <div class="c-widget-share-box-content">
78
+ <div class="c-widget-share-box__tweet">
79
+ <a href="https://twitter.com/share" class="twitter-share-button" data-show-count="false">Tweet</a>
80
+ <script async="" src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
81
+ </div>
82
+ <div class="c-widget-share-box__fb">
83
+ <div class="fb-like" data-href="{{page.url | relative_url}}" data-layout="button" data-action="like" data-size="small" data-show-faces="false" data-share="true"></div>
84
+ </div>
85
+ </div>
86
+ </div>
87
+ <!--
88
+ <div class="c-widget-simple-text c-widget-simple-text--stacked" id="relatives-box">
89
+ <div class="c-widget-share-box-headline u-center">Kam dále?</div>
90
+ <div class="c-widget-share-box-content">
91
+ <ul id="relatives" />
92
+ </div>
93
+ </div>
94
+ -->
95
+ <a href="//dary.pirati.cz" target="_blank">
96
+ <div class="c-widget-share-box c-widget-share-box--directions c-widget-simple-text--stacked">
97
+ <div class="c-widget-share-box-headline u-center">Kam dále?</div>
98
+ <div class="c-widget-share-box-content u-center">
99
+ Podpořte nás!
100
+ </div>
101
+ </div>
102
+ </a>
103
+ </div>
104
+ </div>
105
+ </div>
106
+ </div>
107
+ </div>
108
+ </div>
109
+ </div>
110
+ </article>
@@ -0,0 +1,13 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <link rel="canonical" href="{{ page.redirect_to }}"/>
5
+ <meta http-equiv="content-type" content="text/html; charset=utf-8" />
6
+ <meta http-equiv="refresh" content="0;url={{ page.redirect_to }}" />
7
+ </head>
8
+ <body>
9
+ <h1>Přesměrovávám...</h1>
10
+ <a href="{{ page.redirect_to }}">Prosím klikněte zde, pokud jste nebyli přesměrováni.<a>
11
+ <script>location='{{ page.redirect_to }}'</script>
12
+ </body>
13
+ </html>
@@ -0,0 +1,45 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {%unless page.nomenu%}
6
+ {% include submenu.html %}
7
+ {% endunless%}
8
+
9
+ <div class="row">
10
+ <div class="medium-12 {% if page.rbar == empty %}large-12{% else%}large-8{%endif%} columns">
11
+ <div class="o-section o-section--spaceBot">
12
+ <div class="o-section-inner">
13
+ <main class="o-section-block">
14
+ <!-- Article -->
15
+ <article itemtype="http://schema.org/BlogPosting" class="c-BasicPage" itemscope="">
16
+ <link itemprop="mainEntityOfPage" href="http://insertshownpagelinkhere.com">
17
+ {% if page['nadřízený tým'] %}
18
+
19
+ <ul class="breadcrumbs">
20
+ <li><a href="{{ '/pripoj-se/tymy/' | relative_url }}">Seznam týmů</a></li>
21
+ {% assign thisteam = page['nadřízený tým'] %}
22
+ {% assign superior = site.teams | where_exp: "item", "item.name == thisteam" | first %}
23
+ <li><a href="{{ superior.url}}">{{ thisteam | capitalize }}</a></li>
24
+ <li class="current">{{page.name | capitalize }}</li>
25
+ </ul>
26
+
27
+ {% endif %}
28
+ <h1 itemprop="headline" class="c-BasicPage__title">
29
+ {{page.name | capitalize }}
30
+ </h1>
31
+ <div itemprop="description" class="c-BasicPage-content">
32
+ {{content}}
33
+ </div>
34
+ </article>
35
+ <!-- /Article -->
36
+ </main>
37
+ </div>
38
+ </div>
39
+ </div>
40
+ {% unless page.rbar == blank %}
41
+ <div class="medium-12 large-4 columns">
42
+ {% include right-bar/rbar.html %}
43
+ </div>
44
+ {% endunless %}
45
+ </div>
@@ -0,0 +1,24 @@
1
+ html, body {
2
+ font-size: 14px;
3
+ }
4
+
5
+ .fa {
6
+ text-align: center;
7
+ min-width: 18px;
8
+
9
+ @include breakpoint(large down) {
10
+ min-width: 15px;
11
+ }
12
+
13
+ @include breakpoint(medium down) {
14
+ min-width: 13px;
15
+ }
16
+
17
+ }
18
+
19
+ hr {
20
+ max-width: none;
21
+ border: 0;
22
+ height: 1px;
23
+ background: #f3f3f3;
24
+ }
@@ -0,0 +1,569 @@
1
+ // Foundation for Sites Settings
2
+ // -----------------------------
3
+ //
4
+ // Table of Contents:
5
+ //
6
+ // 1. Global
7
+ // 2. Breakpoints
8
+ // 3. The Grid
9
+ // 4. Base Typography
10
+ // 5. Typography Helpers
11
+ // 6. Abide
12
+ // 7. Accordion
13
+ // 8. Accordion Menu
14
+ // 9. Badge
15
+ // 10. Breadcrumbs
16
+ // 11. Button
17
+ // 12. Button Group
18
+ // 13. Callout
19
+ // 14. Close Button
20
+ // 15. Drilldown
21
+ // 16. Dropdown
22
+ // 17. Dropdown Menu
23
+ // 18. Flex Video
24
+ // 19. Forms
25
+ // 20. Label
26
+ // 21. Media Object
27
+ // 22. Menu
28
+ // 23. Meter
29
+ // 24. Off-canvas
30
+ // 25. Orbit
31
+ // 26. Pagination
32
+ // 27. Progress Bar
33
+ // 28. Reveal
34
+ // 29. Slider
35
+ // 30. Switch
36
+ // 31. Table
37
+ // 32. Tabs
38
+ // 33. Thumbnail
39
+ // 34. Title Bar
40
+ // 35. Tooltip
41
+ // 36. Top Bar
42
+
43
+ @import 'foundation/util/util';
44
+
45
+ // 1. Global
46
+ // ---------
47
+
48
+ $global-font-size: 100%;
49
+ $global-width: 1170px;
50
+ $global-lineheight: 1.3;
51
+ $foundation-palette: (
52
+ primary: #2785ce,
53
+ secondary: #777,
54
+ success: #3adb76,
55
+ warning: #ffae00,
56
+ alert: #cc0303,
57
+ dark: #343434
58
+ );
59
+ $light-gray: #e6e6e6;
60
+ $medium-gray: #cacaca;
61
+ $dark-gray: #8a8a8a;
62
+ $black: #0a0a0a;
63
+ $white: #fefefe;
64
+ $body-background: $white;
65
+ $body-font-color: $black;
66
+ $body-font-family: 'Open Sans', Helvetica, Roboto, Arial, sans-serif;
67
+ $body-antialiased: true;
68
+ $global-margin: 1rem;
69
+ $global-padding: 1rem;
70
+ $global-weight-normal: normal;
71
+ $global-weight-bold: bold;
72
+ $global-radius: 0;
73
+ $global-text-direction: ltr;
74
+ $global-flexbox: false;
75
+ $print-transparent-backgrounds: true;
76
+
77
+ @include add-foundation-colors;
78
+
79
+ // 2. Breakpoints
80
+ // --------------
81
+
82
+ $breakpoints: (
83
+ small: 0,
84
+ mobile: 480px,
85
+ medium: 640px,
86
+ large: 1024px,
87
+ xlarge: 1200px,
88
+ xxlarge: 1440px,
89
+ );
90
+ $breakpoint-classes: (small medium large);
91
+
92
+ // 3. The Grid
93
+ // -----------
94
+
95
+ $grid-row-width: $global-width;
96
+ $grid-column-count: 12;
97
+ $grid-column-gutter: (
98
+ small: 10px,
99
+ mobile: 20px,
100
+ medium: 40px,
101
+ );
102
+ $grid-column-align-edge: true;
103
+ $block-grid-max: 8;
104
+
105
+ // 4. Base Typography
106
+ // ------------------
107
+
108
+ $header-font-family: 'Fira Sans', Helvetica, Roboto, Arial, sans-serif;
109
+ $header-font-weight: $global-weight-normal;
110
+ $header-font-style: normal;
111
+ $font-family-monospace: Consolas, 'Liberation Mono', Courier, monospace;
112
+ $header-sizes: (
113
+ small: (
114
+ 'h1': 24,
115
+ 'h2': 20,
116
+ 'h3': 19,
117
+ 'h4': 18,
118
+ 'h5': 17,
119
+ 'h6': 16,
120
+ ),
121
+ medium: (
122
+ 'h1': 32,
123
+ 'h2': 25.5,
124
+ 'h3': 20,
125
+ 'h4': 18,
126
+ 'h5': 16,
127
+ 'h6': 14,
128
+ ),
129
+ );
130
+ $header-color: inherit;
131
+ $header-lineheight: 1.2;
132
+ $header-margin-bottom: 0.5rem;
133
+ $header-text-rendering: optimizeLegibility;
134
+ $small-font-size: 80%;
135
+ $header-small-font-color: $medium-gray;
136
+ $paragraph-lineheight: 1.6;
137
+ $paragraph-margin-bottom: 1rem;
138
+ $paragraph-text-rendering: optimizeLegibility;
139
+ $code-color: $black;
140
+ $code-font-family: $font-family-monospace;
141
+ $code-font-weight: $global-weight-normal;
142
+ $code-background: $light-gray;
143
+ $code-border: 1px solid $medium-gray;
144
+ $code-padding: rem-calc(2 5 1);
145
+ $anchor-color: $primary-color;
146
+ $anchor-color-hover: scale-color($anchor-color, $lightness: -14%);
147
+ $anchor-text-decoration: none;
148
+ $anchor-text-decoration-hover: none;
149
+ $hr-width: $global-width;
150
+ $hr-border: 1px solid $medium-gray;
151
+ $hr-margin: rem-calc(20) auto;
152
+ $list-lineheight: $paragraph-lineheight;
153
+ $list-margin-bottom: $paragraph-margin-bottom;
154
+ $list-style-type: disc;
155
+ $list-style-position: outside;
156
+ $list-side-margin: 1.25rem;
157
+ $list-nested-side-margin: 1.25rem;
158
+ $defnlist-margin-bottom: 1rem;
159
+ $defnlist-term-weight: $global-weight-bold;
160
+ $defnlist-term-margin-bottom: 0.3rem;
161
+ $blockquote-color: $dark-gray;
162
+ $blockquote-padding: rem-calc(9 20 0 19);
163
+ $blockquote-border: 1px solid $medium-gray;
164
+ $cite-font-size: rem-calc(13);
165
+ $cite-color: $dark-gray;
166
+ $keystroke-font: $font-family-monospace;
167
+ $keystroke-color: $black;
168
+ $keystroke-background: $light-gray;
169
+ $keystroke-padding: rem-calc(2 4 0);
170
+ $keystroke-radius: $global-radius;
171
+ $abbr-underline: 1px dotted $black;
172
+
173
+ // 5. Typography Helpers
174
+ // ---------------------
175
+
176
+ $lead-font-size: $global-font-size * 1.25;
177
+ $lead-lineheight: 1.6;
178
+ $subheader-lineheight: 1.4;
179
+ $subheader-color: $dark-gray;
180
+ $subheader-font-weight: $global-weight-normal;
181
+ $subheader-margin-top: 0.2rem;
182
+ $subheader-margin-bottom: 0.5rem;
183
+ $stat-font-size: 2.5rem;
184
+
185
+ // 6. Abide
186
+ // --------
187
+
188
+ $abide-inputs: true;
189
+ $abide-labels: true;
190
+ $input-background-invalid: map-get($foundation-palette, alert);
191
+ $form-label-color-invalid: map-get($foundation-palette, alert);
192
+ $input-error-color: map-get($foundation-palette, alert);
193
+ $input-error-font-size: rem-calc(12);
194
+ $input-error-font-weight: $global-weight-bold;
195
+
196
+ // 7. Accordion
197
+ // ------------
198
+
199
+ $accordion-background: $white;
200
+ $accordion-plusminus: true;
201
+ $accordion-item-color: foreground($accordion-background, $primary-color);
202
+ $accordion-item-background-hover: $light-gray;
203
+ $accordion-item-padding: 1.25rem 1rem;
204
+ $accordion-content-background: $white;
205
+ $accordion-content-border: 1px solid $light-gray;
206
+ $accordion-content-color: foreground($accordion-content-background, $body-font-color);
207
+ $accordion-content-padding: 1rem;
208
+
209
+ // 8. Accordion Menu
210
+ // -----------------
211
+
212
+ $accordionmenu-arrows: true;
213
+ $accordionmenu-arrow-color: $primary-color;
214
+
215
+ // 9. Badge
216
+ // --------
217
+
218
+ $badge-background: $primary-color;
219
+ $badge-color: foreground($badge-background);
220
+ $badge-padding: 0.3em;
221
+ $badge-minwidth: 2.1em;
222
+ $badge-font-size: 0.6rem;
223
+
224
+ // 10. Breadcrumbs
225
+ // ---------------
226
+
227
+ $breadcrumbs-margin: 0 0 $global-margin 0;
228
+ $breadcrumbs-item-font-size: rem-calc(11);
229
+ $breadcrumbs-item-color: $primary-color;
230
+ $breadcrumbs-item-color-current: $black;
231
+ $breadcrumbs-item-color-disabled: $medium-gray;
232
+ $breadcrumbs-item-margin: 0.75rem;
233
+ $breadcrumbs-item-uppercase: true;
234
+ $breadcrumbs-item-slash: true;
235
+
236
+ // 11. Button
237
+ // ----------
238
+
239
+ $button-padding: 0.85em 1em;
240
+ $button-margin: 0 0 $global-margin 0;
241
+ $button-fill: solid;
242
+ $button-background: $primary-color;
243
+ $button-background-hover: scale-color($button-background, $lightness: -15%);
244
+ $button-color: $white;
245
+ $button-color-alt: $black;
246
+ $button-radius: $global-radius;
247
+ $button-sizes: (
248
+ tiny: 0.6rem,
249
+ small: 0.75rem,
250
+ default: 0.9rem,
251
+ large: 1.25rem,
252
+ );
253
+ $button-opacity-disabled: 0.25;
254
+
255
+ // 12. Button Group
256
+ // ----------------
257
+
258
+ $buttongroup-margin: 1rem;
259
+ $buttongroup-spacing: 1px;
260
+ $buttongroup-child-selector: '.button';
261
+ $buttongroup-expand-max: 6;
262
+
263
+ // 13. Callout
264
+ // -----------
265
+
266
+ $callout-background: $white;
267
+ $callout-background-fade: 85%;
268
+ $callout-border: 1px solid rgba($black, 0.25);
269
+ $callout-margin: 0 0 1rem 0;
270
+ $callout-padding: 1rem;
271
+ $callout-font-color: $body-font-color;
272
+ $callout-font-color-alt: $body-background;
273
+ $callout-radius: $global-radius;
274
+ $callout-link-tint: 30%;
275
+
276
+ // 14. Close Button
277
+ // ----------------
278
+
279
+ $closebutton-position: right top;
280
+ $closebutton-offset-horizontal: 1rem;
281
+ $closebutton-offset-vertical: 0.5rem;
282
+ $closebutton-size: 2em;
283
+ $closebutton-lineheight: 1;
284
+ $closebutton-color: $dark-gray;
285
+ $closebutton-color-hover: $black;
286
+
287
+ // 15. Drilldown
288
+ // -------------
289
+
290
+ $drilldown-transition: transform 0.15s linear;
291
+ $drilldown-arrows: true;
292
+ $drilldown-arrow-color: $primary-color;
293
+ $drilldown-background: $white;
294
+
295
+ // 16. Dropdown
296
+ // ------------
297
+
298
+ $dropdown-padding: 1rem;
299
+ $dropdown-border: 1px solid $medium-gray;
300
+ $dropdown-font-size: 1rem;
301
+ $dropdown-width: 300px;
302
+ $dropdown-radius: $global-radius;
303
+ $dropdown-sizes: (
304
+ tiny: 100px,
305
+ small: 200px,
306
+ large: 400px,
307
+ );
308
+
309
+ // 17. Dropdown Menu
310
+ // -----------------
311
+
312
+ $dropdownmenu-arrows: true;
313
+ $dropdownmenu-arrow-color: $anchor-color;
314
+ $dropdownmenu-min-width: 200px;
315
+ $dropdownmenu-background: $white;
316
+ $dropdownmenu-border: 1px solid $medium-gray;
317
+
318
+ // 18. Flex Video
319
+ // --------------
320
+
321
+ $flexvideo-margin-bottom: rem-calc(16);
322
+ $flexvideo-ratio: 4 by 3;
323
+ $flexvideo-ratio-widescreen: 16 by 9;
324
+
325
+ // 19. Forms
326
+ // ---------
327
+
328
+ $fieldset-border: 1px solid $medium-gray;
329
+ $fieldset-padding: rem-calc(20);
330
+ $fieldset-margin: rem-calc(18 0);
331
+ $legend-padding: rem-calc(0 3);
332
+ $form-spacing: rem-calc(16);
333
+ $helptext-color: $black;
334
+ $helptext-font-size: rem-calc(13);
335
+ $helptext-font-style: italic;
336
+ $input-prefix-color: $black;
337
+ $input-prefix-background: $light-gray;
338
+ $input-prefix-border: 1px solid $medium-gray;
339
+ $input-prefix-padding: 1rem;
340
+ $form-label-color: $black;
341
+ $form-label-font-size: rem-calc(14);
342
+ $form-label-font-weight: $global-weight-normal;
343
+ $form-label-line-height: 1.8;
344
+ $select-background: $white;
345
+ $select-triangle-color: $dark-gray;
346
+ $select-radius: $global-radius;
347
+ $input-color: $black;
348
+ $input-placeholder-color: $medium-gray;
349
+ $input-font-family: inherit;
350
+ $input-font-size: rem-calc(16);
351
+ $input-background: $white;
352
+ $input-background-focus: $white;
353
+ $input-background-disabled: $light-gray;
354
+ $input-border: 1px solid $medium-gray;
355
+ $input-border-focus: 1px solid $dark-gray;
356
+ $input-shadow: inset 0 1px 2px rgba($black, 0.1);
357
+ $input-shadow-focus: 0 0 5px $medium-gray;
358
+ $input-cursor-disabled: not-allowed;
359
+ $input-transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
360
+ $input-number-spinners: true;
361
+ $input-radius: $global-radius;
362
+
363
+ // 20. Label
364
+ // ---------
365
+
366
+ $label-background: $primary-color;
367
+ $label-color: foreground($label-background);
368
+ $label-font-size: 0.8rem;
369
+ $label-padding: 0.33333rem 0.5rem;
370
+ $label-radius: $global-radius;
371
+
372
+ // 21. Media Object
373
+ // ----------------
374
+
375
+ $mediaobject-margin-bottom: $global-margin;
376
+ $mediaobject-section-padding: $global-padding;
377
+ $mediaobject-image-width-stacked: 100%;
378
+
379
+ // 22. Menu
380
+ // --------
381
+
382
+ $menu-margin: 0;
383
+ $menu-margin-nested: 1rem;
384
+ $menu-item-padding: 0.7rem 1rem;
385
+ $menu-item-color-active: $white;
386
+ $menu-item-background-active: map-get($foundation-palette, primary);
387
+ $menu-icon-spacing: 0.25rem;
388
+
389
+ // 23. Meter
390
+ // ---------
391
+
392
+ $meter-height: 1rem;
393
+ $meter-radius: $global-radius;
394
+ $meter-background: $medium-gray;
395
+ $meter-fill-good: $success-color;
396
+ $meter-fill-medium: $warning-color;
397
+ $meter-fill-bad: $alert-color;
398
+
399
+ // 24. Off-canvas
400
+ // --------------
401
+
402
+ $offcanvas-size: 250px;
403
+ $offcanvas-background: $light-gray;
404
+ $offcanvas-zindex: -1;
405
+ $offcanvas-transition-length: 0.5s;
406
+ $offcanvas-transition-timing: ease;
407
+ $offcanvas-fixed-reveal: true;
408
+ $offcanvas-exit-background: rgba($white, 0.25);
409
+ $maincontent-class: 'off-canvas-content';
410
+ $maincontent-shadow: 0 0 10px rgba($black, 0.5);
411
+
412
+ // 25. Orbit
413
+ // ---------
414
+
415
+ $orbit-bullet-background: $medium-gray;
416
+ $orbit-bullet-background-active: $dark-gray;
417
+ $orbit-bullet-diameter: 1.2rem;
418
+ $orbit-bullet-margin: 0.1rem;
419
+ $orbit-bullet-margin-top: 0.8rem;
420
+ $orbit-bullet-margin-bottom: 0.8rem;
421
+ $orbit-caption-background: rgba($black, 0.5);
422
+ $orbit-caption-padding: 1rem;
423
+ $orbit-control-background-hover: rgba($black, 0.5);
424
+ $orbit-control-padding: 1rem;
425
+ $orbit-control-zindex: 10;
426
+
427
+ // 26. Pagination
428
+ // --------------
429
+
430
+ $pagination-font-size: rem-calc(20);
431
+ $pagination-margin-bottom: $global-margin;
432
+ $pagination-item-color: $black;
433
+ $pagination-item-padding: 0;
434
+ $pagination-item-spacing: rem-calc(4);
435
+ $pagination-radius: $global-radius;
436
+ $pagination-item-background-hover: $light-gray;
437
+ $pagination-item-background-current: transparent;
438
+ $pagination-item-color-current: #343434;
439
+ $pagination-item-color-disabled: $medium-gray;
440
+ $pagination-ellipsis-color: #343434;
441
+ $pagination-mobile-items: false;
442
+ $pagination-arrows: false;
443
+
444
+ // 27. Progress Bar
445
+ // ----------------
446
+
447
+ $progress-height: 1rem;
448
+ $progress-background: $medium-gray;
449
+ $progress-margin-bottom: $global-margin;
450
+ $progress-meter-background: $primary-color;
451
+ $progress-radius: $global-radius;
452
+
453
+ // 28. Reveal
454
+ // ----------
455
+
456
+ $reveal-background: $white;
457
+ $reveal-width: 600px;
458
+ $reveal-max-width: $global-width;
459
+ $reveal-padding: $global-padding;
460
+ $reveal-border: 1px solid $medium-gray;
461
+ $reveal-radius: $global-radius;
462
+ $reveal-zindex: 1005;
463
+ $reveal-overlay-background: rgba($black, 0.45);
464
+
465
+ // 29. Slider
466
+ // ----------
467
+
468
+ $slider-width-vertical: 0.5rem;
469
+ $slider-transition: all 0.2s ease-in-out;
470
+ $slider-height: 0.5rem;
471
+ $slider-background: $light-gray;
472
+ $slider-fill-background: $medium-gray;
473
+ $slider-handle-height: 1.4rem;
474
+ $slider-handle-width: 1.4rem;
475
+ $slider-handle-background: $primary-color;
476
+ $slider-opacity-disabled: 0.25;
477
+ $slider-radius: $global-radius;
478
+
479
+ // 30. Switch
480
+ // ----------
481
+
482
+ $switch-background: $medium-gray;
483
+ $switch-background-active: $primary-color;
484
+ $switch-height: 2rem;
485
+ $switch-height-tiny: 1.5rem;
486
+ $switch-height-small: 1.75rem;
487
+ $switch-height-large: 2.5rem;
488
+ $switch-radius: $global-radius;
489
+ $switch-margin: $global-margin;
490
+ $switch-paddle-background: $white;
491
+ $switch-paddle-offset: 0.25rem;
492
+ $switch-paddle-radius: $global-radius;
493
+ $switch-paddle-transition: all 0.25s ease-out;
494
+
495
+ // 31. Table
496
+ // ---------
497
+
498
+ $table-background: $white;
499
+ $table-color-scale: 5%;
500
+ $table-border: 1px solid smart-scale($table-background, $table-color-scale);
501
+ $table-padding: rem-calc(8 10 10);
502
+ $table-hover-scale: 2%;
503
+ $table-row-hover: darken($table-background, $table-hover-scale);
504
+ $table-row-stripe-hover: darken($table-background, $table-color-scale + $table-hover-scale);
505
+ $table-striped-background: smart-scale($table-background, $table-color-scale);
506
+ $table-stripe: even;
507
+ $table-head-background: smart-scale($table-background, $table-color-scale / 2);
508
+ $table-foot-background: smart-scale($table-background, $table-color-scale);
509
+ $table-head-font-color: $body-font-color;
510
+ $show-header-for-stacked: false;
511
+
512
+ // 32. Tabs
513
+ // --------
514
+
515
+ $tab-margin: 0;
516
+ $tab-background: $white;
517
+ $tab-background-active: $light-gray;
518
+ $tab-item-font-size: rem-calc(12);
519
+ $tab-item-background-hover: $white;
520
+ $tab-item-padding: 1.25rem 1.5rem;
521
+ $tab-expand-max: 6;
522
+ $tab-content-background: $white;
523
+ $tab-content-border: $light-gray;
524
+ $tab-content-color: foreground($tab-background, $primary-color);
525
+ $tab-content-padding: 1rem;
526
+
527
+ // 33. Thumbnail
528
+ // -------------
529
+
530
+ $thumbnail-border: solid 4px $white;
531
+ $thumbnail-margin-bottom: $global-margin;
532
+ $thumbnail-shadow: 0 0 0 1px rgba($black, 0.2);
533
+ $thumbnail-shadow-hover: 0 0 6px 1px rgba($primary-color, 0.5);
534
+ $thumbnail-transition: box-shadow 200ms ease-out;
535
+ $thumbnail-radius: $global-radius;
536
+
537
+ // 34. Title Bar
538
+ // -------------
539
+
540
+ $titlebar-background: $black;
541
+ $titlebar-color: $white;
542
+ $titlebar-padding: 0.5rem;
543
+ $titlebar-text-font-weight: bold;
544
+ $titlebar-icon-color: $white;
545
+ $titlebar-icon-color-hover: $medium-gray;
546
+ $titlebar-icon-spacing: 0.25rem;
547
+
548
+ // 35. Tooltip
549
+ // -----------
550
+
551
+ $has-tip-font-weight: $global-weight-bold;
552
+ $has-tip-border-bottom: dotted 1px $dark-gray;
553
+ $tooltip-background-color: $black;
554
+ $tooltip-color: $white;
555
+ $tooltip-padding: 0.75rem;
556
+ $tooltip-font-size: $small-font-size;
557
+ $tooltip-pip-width: 0.75rem;
558
+ $tooltip-pip-height: $tooltip-pip-width * 0.866;
559
+ $tooltip-radius: $global-radius;
560
+
561
+ // 36. Top Bar
562
+ // -----------
563
+
564
+ $topbar-padding: 1.3rem;
565
+ $topbar-background: $white;
566
+ $topbar-submenu-background: $topbar-background;
567
+ $topbar-title-spacing: 1rem;
568
+ $topbar-input-width: 200px;
569
+ $topbar-unstack-breakpoint: large;