linaro-jekyll-theme 4.1.5 → 4.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_config.yml +20 -0
- data/_data/nav.yml +18 -3
- data/_data/picture.yml +35 -5
- data/_data/sticky_tab_bar.yml +24 -0
- data/_data/universal_nav.yml +23 -10
- data/_includes/blog/post_search_fess.html +11 -0
- data/_includes/components/breadcrumb.html +5 -2
- data/_includes/components/cookie_manager.html +2 -2
- data/_includes/components/github_edit.html +5 -5
- data/_includes/components/head.html +4 -2
- data/_includes/components/jumbotron.html +30 -11
- data/_includes/components/sticky_tab_bar.html +76 -0
- data/_includes/flow/feature_block.html +3 -0
- data/_includes/js_bundles/vendor.html +1 -0
- data/_includes/nav/nav.html +24 -14
- data/_includes/nav/universal_nav.html +38 -8
- data/_layouts/documentation.html +19 -0
- data/_layouts/flow.html +3 -0
- data/_sass/app/overrides.scss +27 -9
- data/_sass/core.scss +2 -0
- data/_sass/core/blog.scss +6 -1
- data/_sass/core/breadcrumb.scss +36 -13
- data/_sass/core/carousel-header.scss +53 -61
- data/_sass/core/cookies.scss +104 -90
- data/_sass/core/documentation.scss +39 -0
- data/_sass/core/flow.scss +5 -0
- data/_sass/core/fontello.scss +180 -45
- data/_sass/core/footer.scss +58 -53
- data/_sass/core/jumbotron.scss +32 -31
- data/_sass/core/navbar.scss +171 -58
- data/_sass/core/sticky_tab_bar.scss +35 -0
- data/_sass/core/theme.scss +78 -46
- data/assets/fonts/fontello/fontello.eot +0 -0
- data/assets/fonts/fontello/fontello.svg +34 -0
- data/assets/fonts/fontello/fontello.ttf +0 -0
- data/assets/fonts/fontello/fontello.woff +0 -0
- data/assets/fonts/fontello/fontello.woff2 +0 -0
- data/assets/images/breadcrumb-banner.png +0 -0
- data/assets/js/app/main.js +156 -24
- data/assets/js/vendor/ofi.js +132 -0
- metadata +26 -19
- data/_includes/sticky-tab-bar.html +0 -61
data/_sass/core/fontello.scss
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
@font-face {
|
2
2
|
font-family: "fontello";
|
3
|
+
font-display: swap;
|
3
4
|
src: url("/assets/fonts/fontello/fontello.eot");
|
4
|
-
src: url("/assets/fonts/fontello/fontello.eot")
|
5
|
-
format("embedded-opentype"),
|
5
|
+
src: url("/assets/fonts/fontello/fontello.eot") format("embedded-opentype"),
|
6
6
|
url("/assets/fonts/fontello/fontello.woff2") format("woff2"),
|
7
7
|
url("/assets/fonts/fontello/fontello.woff") format("woff"),
|
8
8
|
url("/assets/fonts/fontello/fontello.ttf") format("truetype"),
|
@@ -13,6 +13,7 @@
|
|
13
13
|
[class^="icon-"]:before,
|
14
14
|
[class*=" icon-"]:before {
|
15
15
|
font-family: "fontello";
|
16
|
+
font-display: swap;
|
16
17
|
font-style: normal;
|
17
18
|
font-weight: normal;
|
18
19
|
speak: none;
|
@@ -46,46 +47,180 @@
|
|
46
47
|
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
|
47
48
|
}
|
48
49
|
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
.icon-
|
53
|
-
|
54
|
-
|
55
|
-
.icon-
|
56
|
-
|
57
|
-
|
58
|
-
.icon-
|
59
|
-
|
60
|
-
|
61
|
-
.icon-
|
62
|
-
|
63
|
-
|
64
|
-
.icon-
|
65
|
-
|
66
|
-
|
67
|
-
.icon-
|
68
|
-
|
69
|
-
|
70
|
-
.icon-
|
71
|
-
|
72
|
-
|
73
|
-
.icon-
|
74
|
-
|
75
|
-
|
76
|
-
.icon-
|
77
|
-
|
78
|
-
|
79
|
-
.icon-
|
80
|
-
|
81
|
-
|
82
|
-
.icon-
|
83
|
-
|
84
|
-
|
85
|
-
.icon-
|
86
|
-
|
87
|
-
|
88
|
-
.icon-
|
89
|
-
|
90
|
-
|
91
|
-
.icon-
|
50
|
+
.icon-cancel:before {
|
51
|
+
content: "\2715";
|
52
|
+
} /* '✕' */
|
53
|
+
.icon-cancel-circled:before {
|
54
|
+
content: "\2716";
|
55
|
+
} /* '✖' */
|
56
|
+
.icon-left-open:before {
|
57
|
+
content: "\e75d";
|
58
|
+
} /* '' */
|
59
|
+
.icon-right-open:before {
|
60
|
+
content: "\e75e";
|
61
|
+
} /* '' */
|
62
|
+
.icon-search:before {
|
63
|
+
content: "\e800";
|
64
|
+
} /* '' */
|
65
|
+
.icon-stop:before {
|
66
|
+
content: "\e801";
|
67
|
+
} /* '' */
|
68
|
+
.icon-pause:before {
|
69
|
+
content: "\e802";
|
70
|
+
} /* '' */
|
71
|
+
.icon-fast-fw:before {
|
72
|
+
content: "\e803";
|
73
|
+
} /* '' */
|
74
|
+
.icon-fast-bw:before {
|
75
|
+
content: "\e804";
|
76
|
+
} /* '' */
|
77
|
+
.icon-terminal:before {
|
78
|
+
content: "\e805";
|
79
|
+
} /* '' */
|
80
|
+
.icon-basket:before {
|
81
|
+
content: "\e806";
|
82
|
+
} /* '' */
|
83
|
+
.icon-users:before {
|
84
|
+
content: "\e807";
|
85
|
+
} /* '' */
|
86
|
+
.icon-user:before {
|
87
|
+
content: "\e808";
|
88
|
+
} /* '' */
|
89
|
+
.icon-folder-open:before {
|
90
|
+
content: "\e809";
|
91
|
+
} /* '' */
|
92
|
+
.icon-minus:before {
|
93
|
+
content: "\e80a";
|
94
|
+
} /* '' */
|
95
|
+
.icon-minus-circled:before {
|
96
|
+
content: "\e80b";
|
97
|
+
} /* '' */
|
98
|
+
.icon-plus:before {
|
99
|
+
content: "\e80c";
|
100
|
+
} /* '' */
|
101
|
+
.icon-plus-circled:before {
|
102
|
+
content: "\e80d";
|
103
|
+
} /* '' */
|
104
|
+
.icon-down-open:before {
|
105
|
+
content: "\e80e";
|
106
|
+
} /* '' */
|
107
|
+
.icon-up-open:before {
|
108
|
+
content: "\e80f";
|
109
|
+
} /* '' */
|
110
|
+
.icon-github-circled-alt2:before {
|
111
|
+
content: "\f056";
|
112
|
+
} /* '' */
|
113
|
+
.icon-link-ext:before {
|
114
|
+
content: "\f08e";
|
115
|
+
} /* '' */
|
116
|
+
.icon-sort-down:before {
|
117
|
+
content: "\f0dd";
|
118
|
+
} /* '' */
|
119
|
+
.icon-sort-up:before {
|
120
|
+
content: "\f0de";
|
121
|
+
} /* '' */
|
122
|
+
.icon-angle-left:before {
|
123
|
+
content: "\f104";
|
124
|
+
} /* '' */
|
125
|
+
.icon-angle-right:before {
|
126
|
+
content: "\f105";
|
127
|
+
} /* '' */
|
128
|
+
.icon-terminal-1:before {
|
129
|
+
content: "\f120";
|
130
|
+
} /* '' */
|
131
|
+
.icon-play-circled:before {
|
132
|
+
content: "\f144";
|
133
|
+
} /* '' */
|
134
|
+
.icon-link-ext-alt:before {
|
135
|
+
content: "\f14c";
|
136
|
+
} /* '' */
|
137
|
+
.icon-sort-name-up:before {
|
138
|
+
content: "\f15d";
|
139
|
+
} /* '' */
|
140
|
+
.icon-sort-name-down:before {
|
141
|
+
content: "\f15e";
|
142
|
+
} /* '' */
|
143
|
+
.icon-sort-alt-up:before {
|
144
|
+
content: "\f160";
|
145
|
+
} /* '' */
|
146
|
+
.icon-sort-alt-down:before {
|
147
|
+
content: "\f161";
|
148
|
+
} /* '' */
|
149
|
+
.icon-sort-number-up:before {
|
150
|
+
content: "\f162";
|
151
|
+
} /* '' */
|
152
|
+
.icon-sort-number-down:before {
|
153
|
+
content: "\f163";
|
154
|
+
} /* '' */
|
155
|
+
.icon-youtube-squared:before {
|
156
|
+
content: "\f166";
|
157
|
+
} /* '' */
|
158
|
+
.icon-youtube:before {
|
159
|
+
content: "\f167";
|
160
|
+
} /* '' */
|
161
|
+
.icon-youtube-play:before {
|
162
|
+
content: "\f16a";
|
163
|
+
} /* '' */
|
164
|
+
.icon-file-code:before {
|
165
|
+
content: "\f1c9";
|
166
|
+
} /* '' */
|
167
|
+
.icon-newspaper:before {
|
168
|
+
content: "\f1ea";
|
169
|
+
} /* '' */
|
170
|
+
.icon-cart-plus:before {
|
171
|
+
content: "\f217";
|
172
|
+
} /* '' */
|
173
|
+
.icon-microchip:before {
|
174
|
+
content: "\f2db";
|
175
|
+
} /* '' */
|
176
|
+
.icon-github:before {
|
177
|
+
content: "\f300";
|
178
|
+
} /* '' */
|
179
|
+
.icon-github-circled:before {
|
180
|
+
content: "\f301";
|
181
|
+
} /* '' */
|
182
|
+
.icon-flickr:before {
|
183
|
+
content: "\f303";
|
184
|
+
} /* '' */
|
185
|
+
.icon-flickr-circled:before {
|
186
|
+
content: "\f304";
|
187
|
+
} /* '' */
|
188
|
+
.icon-twitter:before {
|
189
|
+
content: "\f309";
|
190
|
+
} /* '' */
|
191
|
+
.icon-twitter-circled:before {
|
192
|
+
content: "\f30a";
|
193
|
+
} /* '' */
|
194
|
+
.icon-facebook:before {
|
195
|
+
content: "\f30c";
|
196
|
+
} /* '' */
|
197
|
+
.icon-facebook-circled:before {
|
198
|
+
content: "\f30d";
|
199
|
+
} /* '' */
|
200
|
+
.icon-facebook-squared:before {
|
201
|
+
content: "\f30e";
|
202
|
+
} /* '' */
|
203
|
+
.icon-pinterest:before {
|
204
|
+
content: "\f312";
|
205
|
+
} /* '' */
|
206
|
+
.icon-pinterest-circled:before {
|
207
|
+
content: "\f313";
|
208
|
+
} /* '' */
|
209
|
+
.icon-linkedin:before {
|
210
|
+
content: "\f318";
|
211
|
+
} /* '' */
|
212
|
+
.icon-linkedin-circled:before {
|
213
|
+
content: "\f319";
|
214
|
+
} /* '' */
|
215
|
+
.icon-spotify-circled:before {
|
216
|
+
content: "\f328";
|
217
|
+
} /* '' */
|
218
|
+
.icon-instagram:before {
|
219
|
+
content: "\f32d";
|
220
|
+
} /* '' */
|
221
|
+
.icon-calendar:before {
|
222
|
+
content: "📅";
|
223
|
+
} /* '\1f4c5' */
|
224
|
+
.icon-book:before {
|
225
|
+
content: "📕";
|
226
|
+
} /* '\1f4d5' */
|
data/_sass/core/footer.scss
CHANGED
@@ -1,61 +1,66 @@
|
|
1
1
|
#wrapper {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
2
|
+
footer {
|
3
|
+
#github_controls {
|
4
|
+
a {
|
5
|
+
-webkit-appearance: none;
|
6
|
+
}
|
7
|
+
}
|
8
|
+
i {
|
9
|
+
color: white;
|
10
|
+
&:hover {
|
11
|
+
color: $primary;
|
12
|
+
}
|
13
|
+
}
|
14
|
+
a {
|
15
|
+
color: white;
|
16
|
+
&:hover {
|
17
|
+
color: $primary;
|
18
|
+
}
|
19
|
+
}
|
20
|
+
.main {
|
21
|
+
background-color: $footer_bg_color;
|
22
|
+
margin: 30px 0;
|
23
|
+
.footer-column {
|
24
|
+
margin: 30px 0;
|
25
|
+
h3 {
|
26
|
+
color: #ffffff;
|
27
|
+
font-weight: 700;
|
28
|
+
font-size: 26px;
|
29
|
+
border-left: 5px solid $primary;
|
30
|
+
padding-left: 15px;
|
8
31
|
}
|
9
|
-
|
10
|
-
|
32
|
+
ul.list-group {
|
33
|
+
li {
|
34
|
+
background-color: transparent;
|
35
|
+
border: 0;
|
36
|
+
padding-left: 0px;
|
37
|
+
padding-right: 0px;
|
38
|
+
transition: all 400ms ease;
|
11
39
|
&:hover {
|
12
|
-
|
13
|
-
}
|
14
|
-
}
|
15
|
-
.main {
|
16
|
-
background-color: $footer_bg_color;
|
17
|
-
margin: 30px 0;
|
18
|
-
.footer-column {
|
19
|
-
margin: 30px 0;
|
20
|
-
h3 {
|
21
|
-
color: #ffffff;
|
22
|
-
font-weight: 700;
|
23
|
-
font-size: 26px;
|
24
|
-
border-left: 5px solid $primary;
|
25
|
-
padding-left: 15px;
|
26
|
-
}
|
27
|
-
ul.list-group {
|
28
|
-
li {
|
29
|
-
background-color: transparent;
|
30
|
-
border: 0;
|
31
|
-
padding-left: 0px;
|
32
|
-
padding-right: 0px;
|
33
|
-
transition: all 400ms ease;
|
34
|
-
&:hover {
|
35
|
-
padding-left: 4px;
|
36
|
-
}
|
37
|
-
a {
|
38
|
-
color: #fff;
|
39
|
-
font-size: 24px;
|
40
|
-
font-weight: normal;
|
41
|
-
&:hover {
|
42
|
-
color: $primary;
|
43
|
-
text-decoration: none;
|
44
|
-
transition: color .5s ease;
|
45
|
-
-moz-transition: color .5s ease;
|
46
|
-
-webkit-transition: color .5s ease;
|
47
|
-
}
|
48
|
-
}
|
49
|
-
}
|
50
|
-
}
|
40
|
+
padding-left: 4px;
|
51
41
|
}
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
42
|
+
a {
|
43
|
+
color: #fff;
|
44
|
+
font-size: 24px;
|
45
|
+
font-weight: normal;
|
46
|
+
&:hover {
|
47
|
+
color: $primary;
|
48
|
+
text-decoration: none;
|
49
|
+
transition: color 0.5s ease;
|
50
|
+
-moz-transition: color 0.5s ease;
|
51
|
+
-webkit-transition: color 0.5s ease;
|
52
|
+
}
|
58
53
|
}
|
54
|
+
}
|
59
55
|
}
|
56
|
+
}
|
57
|
+
}
|
58
|
+
.strip {
|
59
|
+
background-color: $footer_strip_bg_color;
|
60
|
+
.footer-logo {
|
61
|
+
height: 40px;
|
62
|
+
margin: 10px 0;
|
63
|
+
}
|
60
64
|
}
|
65
|
+
}
|
61
66
|
}
|
data/_sass/core/jumbotron.scss
CHANGED
@@ -5,30 +5,30 @@
|
|
5
5
|
height: $jumbotron_height;
|
6
6
|
margin-bottom: 0px;
|
7
7
|
.inner_content_wrapper {
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
8
|
+
img {
|
9
|
+
height: 150px;
|
10
|
+
width: auto;
|
11
|
+
&.rounded-circle {
|
12
|
+
object-fit: cover;
|
13
|
+
font-family: "object-fit: cover;";
|
14
|
+
height: 75px;
|
15
|
+
width: 75px;
|
16
16
|
}
|
17
|
+
}
|
17
18
|
}
|
18
19
|
h1 {
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
}
|
20
|
+
margin-bottom: 5px;
|
21
|
+
@include media-breakpoint-up(lg) {
|
22
|
+
font-size: 3rem;
|
23
|
+
font-weight: 300;
|
24
|
+
line-height: 1.2;
|
25
|
+
}
|
26
26
|
}
|
27
27
|
p {
|
28
|
-
|
28
|
+
margin-bottom: 5px;
|
29
29
|
}
|
30
30
|
&.video {
|
31
|
-
|
31
|
+
background-color: transparent;
|
32
32
|
}
|
33
33
|
video {
|
34
34
|
position: absolute;
|
@@ -47,11 +47,11 @@
|
|
47
47
|
.inner_content_wrapper {
|
48
48
|
padding: 20px;
|
49
49
|
text-align: center;
|
50
|
-
@include media-breakpoint-only(xs){
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
50
|
+
@include media-breakpoint-only(xs) {
|
51
|
+
padding: 0px;
|
52
|
+
h1 {
|
53
|
+
margin: 0.5rem;
|
54
|
+
}
|
55
55
|
}
|
56
56
|
}
|
57
57
|
}
|
@@ -71,15 +71,15 @@
|
|
71
71
|
padding-top: 0px;
|
72
72
|
padding-bottom: 0px;
|
73
73
|
.owl-carousel {
|
74
|
-
|
74
|
+
height: 100%;
|
75
75
|
.owl-stage-outer {
|
76
|
+
height: 100%;
|
77
|
+
.owl-stage {
|
76
78
|
height: 100%;
|
77
|
-
.owl-
|
78
|
-
|
79
|
-
.owl-item {
|
80
|
-
height: 100%;
|
81
|
-
}
|
79
|
+
.owl-item {
|
80
|
+
height: 100%;
|
82
81
|
}
|
82
|
+
}
|
83
83
|
}
|
84
84
|
}
|
85
85
|
|
@@ -88,9 +88,9 @@
|
|
88
88
|
height: 100%;
|
89
89
|
}
|
90
90
|
.owl-dots {
|
91
|
-
|
92
|
-
|
93
|
-
|
91
|
+
top: -40px;
|
92
|
+
position: relative;
|
93
|
+
}
|
94
94
|
}
|
95
95
|
.header_background_image {
|
96
96
|
position: absolute;
|
@@ -99,6 +99,7 @@
|
|
99
99
|
height: 100%;
|
100
100
|
width: 100%;
|
101
101
|
object-fit: cover;
|
102
|
+
font-family: "object-fit: cover;";
|
102
103
|
filter: brightness(0.1);
|
103
104
|
}
|
104
105
|
}
|