intia-theme 0.1.60 → 0.1.63
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/header.html +4 -1
- data/_includes/latest-story.html +1 -1
- data/_includes/left-right-blocks.html +2 -2
- data/_sass/_layout.scss +10 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2f5108865deb066c3d99f14c443ccc98889f5d6bf51c183572ca8a90e53d8a45
|
|
4
|
+
data.tar.gz: 5341a689b6eb8527f545c52ae04ee6c3b722892548d60b2f6f00b9ff7db4a8ed
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c29d514c379792f7817998b215044c010434d5f68a9220704d2f7164da493742bbab23e80f0e71455c025209cbae64d95f7e6ad2ca06a171381c2a311f6cc35f
|
|
7
|
+
data.tar.gz: 0ac7d5150e9c004b5c4da4c6fee8ceadabefac1eabd4f93746856a9e50c03ed870ce4ff163685764f9310beb50a45bf1b959c25d79fc436118e3369561f92155
|
data/_includes/header.html
CHANGED
|
@@ -2,7 +2,10 @@
|
|
|
2
2
|
<div class="container">
|
|
3
3
|
<div class="navbar-brand">
|
|
4
4
|
<a href="{{ site.baseurl }}/" class="">
|
|
5
|
-
<
|
|
5
|
+
<picture>
|
|
6
|
+
<source media="(max-width: 1300px)" srcset="/assets/img/logo-short.png">
|
|
7
|
+
<img id="navbar-logo" src="/assets/img/logo-horizontal-short.png">
|
|
8
|
+
</picture>
|
|
6
9
|
</a>
|
|
7
10
|
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false" data-target="navMenu"
|
|
8
11
|
:class="{ 'is-active': openNav }" x-on:click="openNav = !openNav">
|
data/_includes/latest-story.html
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
</figure>
|
|
11
11
|
</div>
|
|
12
12
|
<div class="card-content">
|
|
13
|
-
<h2 class="fas {{ section.icon }} fa-2x">{{ section.title
|
|
13
|
+
<h2 class="fas {{ section.icon }} fa-2x"><div>{{ section.title }}</div></h2>
|
|
14
14
|
{{ section.text | markdownify }}
|
|
15
15
|
|
|
16
16
|
<a href="{{ section.link | relative_url }}" class="button is-rounded has-text-centert is-dark {% if item.link == page.url %}is-active{% endif %}">
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
<img src={{section.image}} alt="placeholder" class="left">
|
|
28
28
|
</figure>
|
|
29
29
|
</div>
|
|
30
|
-
<h2 class="fas {{ section.icon }} fa-2x">{{ section.title
|
|
30
|
+
<h2 class="fas {{ section.icon }} fa-2x"><div>{{ section.title }}</div></h2>
|
|
31
31
|
{{ section.text | markdownify }}
|
|
32
32
|
<a href="{{ section.link | relative_url }}" class="button is-rounded is-dark {% if item.link == page.url %}is-active{% endif %}">
|
|
33
33
|
<span>{{ section.link_text }}</span>
|
data/_sass/_layout.scss
CHANGED
|
@@ -122,7 +122,7 @@ h2 {
|
|
|
122
122
|
padding-top: 0;
|
|
123
123
|
}
|
|
124
124
|
.card h2.fas {
|
|
125
|
-
padding-bottom:
|
|
125
|
+
padding-bottom: 15px;
|
|
126
126
|
}
|
|
127
127
|
|
|
128
128
|
// List
|
|
@@ -805,7 +805,9 @@ figcaption {
|
|
|
805
805
|
.slider-navigation-next img {
|
|
806
806
|
border-radius: 0%;
|
|
807
807
|
}
|
|
808
|
-
|
|
808
|
+
.latest-story {
|
|
809
|
+
background-color: $primary-dark;
|
|
810
|
+
}
|
|
809
811
|
//highlighter
|
|
810
812
|
.highlighter {
|
|
811
813
|
background-color: $light;
|
|
@@ -1231,4 +1233,9 @@ div.faq {
|
|
|
1231
1233
|
// Override fas default font
|
|
1232
1234
|
.fas p {
|
|
1233
1235
|
font-family: $family-primary;
|
|
1234
|
-
}
|
|
1236
|
+
}
|
|
1237
|
+
.fas div{
|
|
1238
|
+
display: inline;
|
|
1239
|
+
font-family: $family-primary;
|
|
1240
|
+
padding-left: 17px;
|
|
1241
|
+
}
|