seriously_simple_static_starter 0.5.1 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_includes/cards.html +1 -1
- data/_includes/core/blocks.html +21 -0
- data/_includes/core/button.html +6 -0
- data/_includes/core/buttons.html +5 -0
- data/_includes/core/call-to-action-banner.html +8 -0
- data/_includes/core/container_row.html +7 -0
- data/_includes/core/feature_block.html +38 -0
- data/_includes/core/full_width_row.html +5 -0
- data/_includes/core/members_section.html +27 -0
- data/_includes/core/slider.html +28 -0
- data/_includes/core/slider_row.html +3 -0
- data/_includes/core/text.html +3 -0
- data/_includes/core/title.html +3 -0
- data/_includes/core/youtube_video_embed.html +11 -0
- data/_includes/flow.html +15 -17
- data/_includes/flow_inner.html +23 -0
- data/_includes/header.html +22 -20
- data/_layouts/page.html +9 -9
- data/_sass/_header.scss +8 -4
- data/_sass/_navbar.scss +3 -3
- data/_sass/_theme.scss +12 -11
- data/_sass/_variables.scss +1 -1
- data/assets/images/drawing1.svg +1119 -0
- data/assets/images/lkft_workflow.svg +1820 -0
- metadata +18 -4
- data/_includes/feature-block.html +0 -24
- data/_layouts/flow.html +0 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5a775cd82675a95e28c1a0db7b6a8398aee69e8061737411660bb3e788230b78
|
|
4
|
+
data.tar.gz: f10f062c7170946f8587486a51c7a8c95a5fc1eee101edf0dcad715335f7a48d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4e6463fa05938d14965b3f53af71d2ab7eaf597a2ac2fe4c314ffc2e71c1563448ed28e94658a41c21d6078f0d68a62b09d34042b026f5f0c9cadb7704abf8de
|
|
7
|
+
data.tar.gz: 10a022c569bfb5f6058521fd229ae03802ece6338a3178c074f6f1e9a35e4a1a088b26f9fa62a3ee8f0b18ac493c1f0e2a1ccc3ea676e0d7160a677dd2e5b65a
|
data/_includes/cards.html
CHANGED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<div class="col-xs-12">
|
|
2
|
+
<div class="row equal">
|
|
3
|
+
{% for block in include.object.content %}
|
|
4
|
+
<div class="col-xs-12 col-sm-{{include.object.item_width}} block {% if include.object.style %}{{include.object.style}}{% endif %}">
|
|
5
|
+
{% if block.url %}<a href="{{block.url}}">{% endif%}
|
|
6
|
+
<div class="block-inner" {% if block.background_image %}style="background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url({{block.background_image}});"{% endif %}>
|
|
7
|
+
{% if block.title %}
|
|
8
|
+
{% include core/title.html object=block.title %}
|
|
9
|
+
{% endif %}
|
|
10
|
+
{% if block.text %}
|
|
11
|
+
{% include core/text.html object=block.text %}
|
|
12
|
+
{% endif %}
|
|
13
|
+
{% if block.buttons %}
|
|
14
|
+
{% include core/buttons.html object=block.buttons %}
|
|
15
|
+
{% endif %}
|
|
16
|
+
</div>
|
|
17
|
+
{% if block.url %}</a>{% endif%}
|
|
18
|
+
</div>
|
|
19
|
+
{% endfor %}
|
|
20
|
+
</div>
|
|
21
|
+
</div>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<a href="{{include.object.url}}" class="btn {% if include.object.style %}{{include.object.style}}{% else %}btn-primary{% endif %}">
|
|
2
|
+
{{include.object.title}}
|
|
3
|
+
{% if include.object.icon %}
|
|
4
|
+
<i class="{{include.object.icon}}" aria-hidden="true"></i>
|
|
5
|
+
{% endif %}
|
|
6
|
+
</a>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<div class="row" id="call_to_action_banner">
|
|
2
|
+
{% if include.object.image %}
|
|
3
|
+
{% picture backgroundImage {{include.object.image.path}} alt=include.object.image.alt %}
|
|
4
|
+
{% endif %}
|
|
5
|
+
<div class="container">
|
|
6
|
+
{% if include.object.title %}<h1>{{include.object.title}}</h1>{% endif %}
|
|
7
|
+
</div>
|
|
8
|
+
</div>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<div class="row {% if include.object.style %}{{include.object.style}}{% endif %}
|
|
2
|
+
{% if include.object.background_image %}background_image_row overlay{% endif %}"
|
|
3
|
+
{% if include.object.background_image %}style="background-image: url({{include.object.background_image}})"{% endif %}>
|
|
4
|
+
<div class="container">
|
|
5
|
+
{% include flow_inner.html sections=include.object.sections %}
|
|
6
|
+
</div>
|
|
7
|
+
</div>
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
<div class="row feature__block p-t-50 p-b-50">
|
|
2
|
+
<div class="container">
|
|
3
|
+
<div class="row">
|
|
4
|
+
<div class="col-md-7 block__image order-md-{% if include.object.side_content.position == "right" %}2{% else %}1{% endif %}">
|
|
5
|
+
{% if include.object.side_content.type == "image" %}
|
|
6
|
+
{% assign image_path = include.object.side_content.image.path | replace: '/assets/images/','' %}
|
|
7
|
+
{% if include.object.side_content.image.svg %}
|
|
8
|
+
<img class="img-fluid svg_image {% if include.object.side_content.image.style %}{{include.object.side_content.image.style}}{% endif %}" alt="{{include.object.side_content.image.alt}}" src="{{include.object.side_content.image.path}}" />
|
|
9
|
+
{% else %}
|
|
10
|
+
{% picture feature_block_image {{image_path}} alt=include.object.image.alt %}
|
|
11
|
+
{% endif %}
|
|
12
|
+
{% elsif include.object.side_content.type == "slider" %}
|
|
13
|
+
{% include core/slider.html object=include.object.side_content.content %}
|
|
14
|
+
{% elsif include.object.side_content.type == "youtube_video" %}
|
|
15
|
+
{% include core/youtube_video_embed.html object=include.object.side_content.content %}
|
|
16
|
+
{% else %}
|
|
17
|
+
<h2>TODO</h2>
|
|
18
|
+
{% endif %}
|
|
19
|
+
</div>
|
|
20
|
+
<div class="col-md-5 block__text order-md-{% if include.object.side_content.position == "right" %}1{% else %}2{% endif %}">
|
|
21
|
+
<h2>{{include.object.title}}</h2>
|
|
22
|
+
{% if include.object.highlight-text %}
|
|
23
|
+
<div class="font-weight-bold">
|
|
24
|
+
{{include.object.highlight-text | markdownify }}
|
|
25
|
+
</div>
|
|
26
|
+
{% endif %}
|
|
27
|
+
{% if include.object.text == "page_content" %}
|
|
28
|
+
{{page.content | markdownify }}
|
|
29
|
+
{% else %}
|
|
30
|
+
{{include.object.text | markdownify}}
|
|
31
|
+
{% endif %}
|
|
32
|
+
{% if include.object.buttons %}
|
|
33
|
+
{% include core/buttons.html object=include.object.buttons %}
|
|
34
|
+
{% endif %}
|
|
35
|
+
</div>
|
|
36
|
+
</div>
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<div class="row {% if include.object.style %}{{include.object.style}}{% endif %}
|
|
2
|
+
{% if include.object.background_image %}background_image_row overlay{% endif %}"
|
|
3
|
+
{% if include.object.background_image %}style="background-image: url({{include.object.background_image}}), linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));"{% endif %}>
|
|
4
|
+
{% include flow_inner.html sections=include.object.sections %}
|
|
5
|
+
</div>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{% if include.object.data_source %}
|
|
2
|
+
{% assign members = site.data[include.object.data_source] %}
|
|
3
|
+
{% else %}
|
|
4
|
+
{% assign members = include.object.content %}
|
|
5
|
+
{% endif %}
|
|
6
|
+
<div class="members_section {% if include.object.style %}{{include.object.style}}{% endif %}">
|
|
7
|
+
{% for member in members %}
|
|
8
|
+
{% if member.url %}<a href="{{member.url}}">{% endif %}
|
|
9
|
+
{% if member.image.path contains "http" %}
|
|
10
|
+
<div class="col-xs-6 col-sm-{{include.object.item_width}}">
|
|
11
|
+
<img class="lazyload img-responsive" alt="{{member.image.alt}}"
|
|
12
|
+
src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
|
|
13
|
+
data-src="{{member.image.path}}"/>
|
|
14
|
+
</div>
|
|
15
|
+
{% else %}
|
|
16
|
+
<div class="col-xs-6 col-sm-{{include.object.item_width}}">
|
|
17
|
+
{% assign image_path = member.image.path | replace: '/assets/images/','' %}
|
|
18
|
+
{% if member.image.svg %}
|
|
19
|
+
<img class="img-fluid svg_image {% if include.object.image.style %}{{include.object.image.style}}{% endif %}" alt="{{include.object.image.alt}}" src="{{image_path}}" />
|
|
20
|
+
{% else %}
|
|
21
|
+
{% picture feature_block_image {{image_path}} alt=include.object.image.alt %}
|
|
22
|
+
{% endif %}
|
|
23
|
+
</div>
|
|
24
|
+
{% endif %}
|
|
25
|
+
{% if member.url %}</a>{% endif %}
|
|
26
|
+
{% endfor %}
|
|
27
|
+
</div>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<div class="owl-carousel slider-block owl-theme" data-size="{{include.object.items | size }}"
|
|
2
|
+
{% if include.object.xs_items %}data-xs-number="{{include.object.xs_items}}"{% endif %}
|
|
3
|
+
{% if include.object.sm_items %}data-sm-number="{{include.object.sm_items}}"{% endif %}
|
|
4
|
+
{% if include.object.md_items %}data-md-number="{{include.object.md_items}}"{% endif %}
|
|
5
|
+
{% if include.object.lg_items %}data-lg-number="{{include.object.lg_items}}"{% endif %}
|
|
6
|
+
{% if include.object.dots %}data-dots="true"{% endif %}
|
|
7
|
+
{% if include.object.nav %}data-nav="true"{% endif %}
|
|
8
|
+
{% if include.object.seconds_per_slide %}data-seconds-per-slide="{{include.object.seconds_per_slide}}"{% endif %}>
|
|
9
|
+
{% if include.object.items %}
|
|
10
|
+
{% assign carousel_items = include.object.items %}
|
|
11
|
+
{% elsif include.object.data_source %}
|
|
12
|
+
{% assign carousel_items = site.data[include.object.data_source] %}
|
|
13
|
+
{% endif %}
|
|
14
|
+
{% for item in carousel_items %}
|
|
15
|
+
{% if include.object.lightbox_enabled %}<a data-featherlight="{{item.image}}">{% endif %}
|
|
16
|
+
<div class="item">
|
|
17
|
+
{% if item.image %}
|
|
18
|
+
{% assign image_path = member.image.path | replace: '/assets/images/','' %}
|
|
19
|
+
{% if item.image %}
|
|
20
|
+
<img class="img-fluid svg_image {% if include.object.image.style %}{{include.object.image.style}}{% endif %}" alt="{{include.object.image.alt}}" src="{{image_path}}" />
|
|
21
|
+
{% else %}
|
|
22
|
+
{% picture feature_block_image {{image_path}} alt=include.object.image.alt %}
|
|
23
|
+
{% endif %}
|
|
24
|
+
{% endif %}
|
|
25
|
+
</div>
|
|
26
|
+
{% if include.object.lightbox_enabled %}</a>{% endif %}
|
|
27
|
+
{% endfor %}
|
|
28
|
+
</div>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{% if include.object.url contains "https://youtu.be/" %}
|
|
2
|
+
{% assign media_url = include.object.url | replace: 'https://youtu.be/','https://youtube.com/embed/'%}
|
|
3
|
+
{% elsif include.object.url contains "https://www.youtube.com/watch?v=" %}
|
|
4
|
+
{% assign media_url = include.object.url | replace: 'https://www.youtube.com/watch?v=','https://youtube.com/embed/'%}
|
|
5
|
+
{% else %}
|
|
6
|
+
{% assign media_url = include.object.url %}
|
|
7
|
+
{% endif %}
|
|
8
|
+
|
|
9
|
+
<div class="embed-responsive embed-responsive-16by9">
|
|
10
|
+
<iframe src='about:blank' allowFullScreen="allowFullScreen" frameBorder="0" class="lazyload embed-responsive-item" data-src="{{media_url}}"></iframe>
|
|
11
|
+
</div>
|
data/_includes/flow.html
CHANGED
|
@@ -1,19 +1,17 @@
|
|
|
1
1
|
<div class="container-fluid content {% if page.header %}not_top{% endif %}" id="main_container">
|
|
2
|
-
{% for
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
{% for each in include.flow %}
|
|
3
|
+
{% if each.row == "main_content_row" %}
|
|
4
|
+
<div class="row" id="main_content">
|
|
5
|
+
<div class="container">
|
|
6
|
+
{{content}}
|
|
7
|
+
</div>
|
|
7
8
|
</div>
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
{%
|
|
11
|
-
|
|
12
|
-
{%
|
|
13
|
-
|
|
14
|
-
{%
|
|
15
|
-
{%
|
|
16
|
-
|
|
17
|
-
{% endif %}
|
|
18
|
-
{% endfor %}
|
|
19
|
-
</div>
|
|
9
|
+
{% elsif each.row == "container_row" %}
|
|
10
|
+
{% include core/container_row.html object=each %}
|
|
11
|
+
{% elsif each.row == "full_width_row" %}
|
|
12
|
+
{% include core/full_width_row.html object=each %}
|
|
13
|
+
{% elsif each.row == "custom_include_row" %}
|
|
14
|
+
{% include {{each.source}} %}
|
|
15
|
+
{% endif %}
|
|
16
|
+
{% endfor %}
|
|
17
|
+
</div>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{% for section in include.sections %}
|
|
2
|
+
{% if section.format == "title" %}
|
|
3
|
+
{% include core/title.html object=section %}
|
|
4
|
+
{% elsif section.format == "members" %}
|
|
5
|
+
{% include core/members_section.html object=section %}
|
|
6
|
+
{% elsif section.format == "block" %}
|
|
7
|
+
{% include core/blocks.html object=section %}
|
|
8
|
+
{% elsif section.format == "buttons" %}
|
|
9
|
+
{% include core/buttons.html object=section.content style=section.style %}
|
|
10
|
+
{% elsif section.format == "text" %}
|
|
11
|
+
{% include core/text.html object=section %}
|
|
12
|
+
{% elsif section.format == "custom" %}
|
|
13
|
+
{% include {{section.include_name}} object=section %}
|
|
14
|
+
{% elsif section.format == "slider" %}
|
|
15
|
+
{% include core/slider_row.html object=section %}
|
|
16
|
+
{% elsif section.format == "feature_block" %}
|
|
17
|
+
{% include core/feature_block.html object=section.content %}
|
|
18
|
+
{% elsif section.format == "latest-posts" %}
|
|
19
|
+
{% include latest_posts.html limit=section.number_of_posts %}
|
|
20
|
+
{% elsif section.format == "cards" %}
|
|
21
|
+
{% include cards.html object=section %}
|
|
22
|
+
{% endif %}
|
|
23
|
+
{% endfor %}
|
data/_includes/header.html
CHANGED
|
@@ -6,23 +6,25 @@
|
|
|
6
6
|
{% endif %}
|
|
7
7
|
<div class="container">
|
|
8
8
|
<div class="jumbotron text-white d-flex flex-column">
|
|
9
|
-
{% if include.object.
|
|
10
|
-
{%
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
{%
|
|
9
|
+
{% if include.object.sections %}
|
|
10
|
+
{% if include.object.showcase_image %}
|
|
11
|
+
<div class="row">
|
|
12
|
+
<div class="col col-xs-12 col-md-8">
|
|
13
|
+
{% include flow_inner.html sections=include.object.sections %}
|
|
14
|
+
</div>
|
|
15
|
+
<div class="col col-xs-12 col-md-4">
|
|
16
|
+
{% assign image_path = include.object.showcase_image.path | replace: '/assets/images/','' %}
|
|
17
|
+
{% if include.object.showcase_image.svg %}
|
|
18
|
+
<img class="img-fluid svg_image {% if include.object.showcase_image.style %}{{include.object.showcase_image.style}}{% endif %}"
|
|
19
|
+
alt="{{include.object.showcase_image.alt}}" src="{{include.object.showcase_image.path}}" />
|
|
20
|
+
{% else %}
|
|
21
|
+
{% picture feature_block_image {{image_path}} alt=include.object.showcase_image.alt %}
|
|
22
|
+
{% endif %}
|
|
23
|
+
</div>
|
|
24
|
+
</div>
|
|
25
|
+
{% else %}
|
|
26
|
+
{% include flow_inner.html sections=include.object.sections %}
|
|
27
|
+
{% endif %}
|
|
26
28
|
{% else %}
|
|
27
29
|
<h1 class="display-3 font-weight-bold">{{include.object.title}}</h1>
|
|
28
30
|
<p class="lead font-weight-bold">
|
|
@@ -31,11 +33,11 @@
|
|
|
31
33
|
{% assign author = site.data.authors[page.author] %}
|
|
32
34
|
{% if author %}
|
|
33
35
|
<span class="author">
|
|
34
|
-
Posted by <a href="{{ author.web }}" target="_blank">{{ author.name }}</a> on
|
|
36
|
+
Posted by <a href="{{ author.web }}" target="_blank">{{ author.name }}</a> on
|
|
35
37
|
{{include.object.date | date: "%A, %B %-d, %Y" }}
|
|
36
38
|
</span>
|
|
37
39
|
{% endif %}
|
|
38
40
|
{% endif %}
|
|
39
|
-
</div>
|
|
41
|
+
</div>
|
|
40
42
|
</div>
|
|
41
|
-
</header>
|
|
43
|
+
</header>
|
data/_layouts/page.html
CHANGED
|
@@ -4,14 +4,14 @@ layout: base
|
|
|
4
4
|
{% if page.header %}
|
|
5
5
|
{% include header.html object=page.header %}
|
|
6
6
|
{% endif %}
|
|
7
|
-
{% if page.
|
|
8
|
-
{% include flow.html flow=page.
|
|
9
|
-
{% else %}
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
</div>
|
|
7
|
+
{% if page.flow %}
|
|
8
|
+
{% include flow.html flow=page.flow %}
|
|
9
|
+
{% else %}
|
|
10
|
+
<div class="container-fluid content {% if page.header %}not_top{% endif %}" id="main_container">
|
|
11
|
+
<div class="row" id="main_content">
|
|
12
|
+
<div class="container">
|
|
13
|
+
{{content}}
|
|
15
14
|
</div>
|
|
16
15
|
</div>
|
|
17
|
-
|
|
16
|
+
</div>
|
|
17
|
+
{% endif %}
|
data/_sass/_header.scss
CHANGED
|
@@ -6,9 +6,13 @@ header {
|
|
|
6
6
|
background-color: transparent;
|
|
7
7
|
padding-left: 0px;
|
|
8
8
|
padding-right:0px;
|
|
9
|
+
position: relative;
|
|
9
10
|
h1 {
|
|
10
11
|
padding-top:100px;
|
|
11
12
|
}
|
|
13
|
+
img {
|
|
14
|
+
padding-top: 100px;
|
|
15
|
+
}
|
|
12
16
|
span.author {
|
|
13
17
|
a {
|
|
14
18
|
color: $secondary;
|
|
@@ -19,17 +23,17 @@ header {
|
|
|
19
23
|
}
|
|
20
24
|
}
|
|
21
25
|
&.svg {
|
|
22
|
-
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' enable-background='new 0 0 2560 1600' version='1.1' viewBox='0 0 2560 1600' xml:space='preserve'%3E%3Cstyle xmlns='http://www.w3.org/2000/svg' type='text/css'%3E .st0%7Bfill:%23000;%7D .st1%7Bfill:url(%23a);%7D polygon%7Bfill:%231b1b1b%7D;%0A%3C/style%3E%3Cpattern id='a' width='319.998' height='319.998' overflow='visible' patternUnits='userSpaceOnUse' viewBox='0 -399.997 319.998 319.998'%3E%3Crect class='st0' y='-400' width='320' height='320'/%3E%3Cpolygon points='240 -79.999 240 0 160 -79.999 160 -160'/%3E%3Cpolygon points='320 -160 240 -79.999 240 -160'/%3E%3Cpolygon points='79.999 -79.999 79.999 0 0 -79.999 0 -160'/%3E%3Cpolygon points='160 -160 79.999 -79.999 79.999 -160'/%3E%3Cpolygon points='320 -240 320 -160 240 -240 240 -320'/%3E%3Cpolygon points='160 -240 160 -160 79.999 -240 79.999 -320'/%3E%3Cpolygon points='240 -320 160 -240 160 -320'/%3E%3Cpolygon points='240 -240 240 -160 160 -160'/%3E%3Cpolygon points='79.999 -320 0 -240 0 -320'/%3E%3Cpolygon points='79.999 -240 79.999 -160 0 -160'/%3E%3Cpolygon points='240 -400 240 -320 160 -400 160 -480'/%3E%3Cpolygon points='320 -400 320 -320 240 -320'/%3E%3Cpolygon points='79.999 -400 79.999 -320 0 -400 0 -480'/%3E%3Cpolygon points='160 -400 160 -320 79.999 -320'/%3E%3C/pattern%3E%3Crect class='st1' width='2560' height='1600'/%3E%3C/svg%3E");
|
|
26
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' enable-background='new 0 0 2560 1600' version='1.1' viewBox='0 0 2560 1600' xml:space='preserve'%3E%3Cstyle xmlns='http://www.w3.org/2000/svg' type='text/css'%3E .st0%7Bfill:%23000;%7D .st1%7Bfill:url(%23a);%7D polygon%7Bfill:%231b1b1b%7D;%0A%3C/style%3E%3Cpattern id='a' width='319.998' height='319.998' overflow='visible' patternUnits='userSpaceOnUse' viewBox='0 -399.997 319.998 319.998'%3E%3Crect class='st0' y='-400' width='320' height='320'/%3E%3Cpolygon points='240 -79.999 240 0 160 -79.999 160 -160'/%3E%3Cpolygon points='320 -160 240 -79.999 240 -160'/%3E%3Cpolygon points='79.999 -79.999 79.999 0 0 -79.999 0 -160'/%3E%3Cpolygon points='160 -160 79.999 -79.999 79.999 -160'/%3E%3Cpolygon points='320 -240 320 -160 240 -240 240 -320'/%3E%3Cpolygon points='160 -240 160 -160 79.999 -240 79.999 -320'/%3E%3Cpolygon points='240 -320 160 -240 160 -320'/%3E%3Cpolygon points='240 -240 240 -160 160 -160'/%3E%3Cpolygon points='79.999 -320 0 -240 0 -320'/%3E%3Cpolygon points='79.999 -240 79.999 -160 0 -160'/%3E%3Cpolygon points='240 -400 240 -320 160 -400 160 -480'/%3E%3Cpolygon points='320 -400 320 -320 240 -320'/%3E%3Cpolygon points='79.999 -400 79.999 -320 0 -400 0 -480'/%3E%3Cpolygon points='160 -400 160 -320 79.999 -320'/%3E%3C/pattern%3E%3Crect class='st1' width='2560' height='1600'/%3E%3C/svg%3E");
|
|
23
27
|
}
|
|
24
28
|
&.background_image {
|
|
25
29
|
background: transparent !important;
|
|
26
30
|
img.header__image {
|
|
27
31
|
filter: brightness(0.4);
|
|
28
32
|
position: absolute;
|
|
29
|
-
z-index:
|
|
33
|
+
z-index: 0;
|
|
30
34
|
height: 100%;
|
|
31
|
-
width: 100%;
|
|
35
|
+
width: 100%;
|
|
32
36
|
object-fit: cover;
|
|
33
37
|
}
|
|
34
38
|
}
|
|
35
|
-
}
|
|
39
|
+
}
|
data/_sass/_navbar.scss
CHANGED
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
}
|
|
64
64
|
}
|
|
65
65
|
img.navbar-brand {
|
|
66
|
-
height:
|
|
66
|
+
height: 66px;
|
|
67
67
|
padding: 0 0;
|
|
68
68
|
}
|
|
69
69
|
.nav-link {
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
border: none;
|
|
114
114
|
background: transparent !important;
|
|
115
115
|
.icon-bar {
|
|
116
|
-
width: 22px;
|
|
116
|
+
width: 22px;
|
|
117
117
|
height: 2px;
|
|
118
118
|
background-color: #fff;
|
|
119
119
|
display: block;
|
|
@@ -156,4 +156,4 @@
|
|
|
156
156
|
.navbar .collapse.in, .navbar .collapsing {
|
|
157
157
|
clear:both;
|
|
158
158
|
}
|
|
159
|
-
}
|
|
159
|
+
}
|
data/_sass/_theme.scss
CHANGED
|
@@ -43,6 +43,7 @@ body{
|
|
|
43
43
|
padding-top: 110px;
|
|
44
44
|
background-color: #fff;
|
|
45
45
|
padding-bottom: 20px;
|
|
46
|
+
position: relative;
|
|
46
47
|
&.not_top {
|
|
47
48
|
padding-top:20px;
|
|
48
49
|
#main_content {
|
|
@@ -50,7 +51,7 @@ body{
|
|
|
50
51
|
}
|
|
51
52
|
}
|
|
52
53
|
#main_content {
|
|
53
|
-
padding-top:
|
|
54
|
+
padding-top: 40px;
|
|
54
55
|
}
|
|
55
56
|
}
|
|
56
57
|
.padded {
|
|
@@ -112,7 +113,7 @@ div#main-container {
|
|
|
112
113
|
margin:0 auto;
|
|
113
114
|
position:fixed;
|
|
114
115
|
bottom:20px;
|
|
115
|
-
right:10px;
|
|
116
|
+
right:10px;
|
|
116
117
|
}
|
|
117
118
|
.scroll {
|
|
118
119
|
position: absolute;
|
|
@@ -127,14 +128,14 @@ div#main-container {
|
|
|
127
128
|
transition: 0.5s;
|
|
128
129
|
-moz-transition: 0.5s;
|
|
129
130
|
-webkit-transition: 0.5s;
|
|
130
|
-
-o-transition: 0.5s;
|
|
131
|
+
-o-transition: 0.5s;
|
|
131
132
|
}
|
|
132
133
|
.scroll:hover {
|
|
133
134
|
background:$gray-800;
|
|
134
135
|
transition: 0.5s;
|
|
135
136
|
-moz-transition: 0.5s;
|
|
136
137
|
-webkit-transition: 0.5s;
|
|
137
|
-
-o-transition: 0.5s;
|
|
138
|
+
-o-transition: 0.5s;
|
|
138
139
|
}
|
|
139
140
|
.scroll:hover .fa {
|
|
140
141
|
padding-top:-10px;
|
|
@@ -146,7 +147,7 @@ div#main-container {
|
|
|
146
147
|
transition: 0.5s;
|
|
147
148
|
-moz-transition: 0.5s;
|
|
148
149
|
-webkit-transition: 0.5s;
|
|
149
|
-
-o-transition: 0.5s;
|
|
150
|
+
-o-transition: 0.5s;
|
|
150
151
|
}
|
|
151
152
|
.dropdown-menu.collapsing {
|
|
152
153
|
display:block;
|
|
@@ -168,7 +169,7 @@ opacity: 0;
|
|
|
168
169
|
transform: rotate(-45deg);
|
|
169
170
|
transform-origin: 10% 90%;
|
|
170
171
|
}
|
|
171
|
-
|
|
172
|
+
|
|
172
173
|
/* ANIMATED X COLLAPSED */
|
|
173
174
|
|
|
174
175
|
.navbar-toggler.collapsed .top-bar {
|
|
@@ -185,21 +186,21 @@ transform: rotate(0);
|
|
|
185
186
|
/* END ANIMATED X */
|
|
186
187
|
|
|
187
188
|
.icon-bar {
|
|
188
|
-
width: 22px;
|
|
189
|
+
width: 22px;
|
|
189
190
|
height: 2px;
|
|
190
191
|
background-color: #B6B6B6;
|
|
191
192
|
display: block;
|
|
192
193
|
transition: all 0.2s;
|
|
193
194
|
margin-top: 4px
|
|
194
195
|
}
|
|
195
|
-
|
|
196
|
+
|
|
196
197
|
.navbar-toggler {
|
|
197
198
|
border: none;
|
|
198
199
|
background: transparent !important;
|
|
199
200
|
}
|
|
200
|
-
//navbar
|
|
201
|
+
//navbar
|
|
201
202
|
.bg-dark{
|
|
202
|
-
background-color: $gray-900 !important;
|
|
203
|
+
background-color: $gray-900 !important;
|
|
203
204
|
}
|
|
204
205
|
.bg-up {
|
|
205
206
|
background-position-y: -300px !important;
|
|
@@ -327,7 +328,7 @@ $sides: (top, bottom, left, right); // Leave this variable alone
|
|
|
327
328
|
.m-#{str-slice($side, 0, 1)}-#{$space} {
|
|
328
329
|
margin-#{$side}: #{$space}px !important;
|
|
329
330
|
}
|
|
330
|
-
|
|
331
|
+
|
|
331
332
|
.p-#{str-slice($side, 0, 1)}-#{$space} {
|
|
332
333
|
padding-#{$side}: #{$space}px !important;
|
|
333
334
|
}
|