linaro-jekyll-theme 4.1.3 → 4.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_config.yml +24 -9
- data/_data/nav.yml +18 -3
- data/_data/picture.yml +41 -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/head.html +2 -2
- data/_includes/components/jumbotron.html +24 -5
- data/_includes/components/sticky_tab_bar.html +76 -0
- data/_includes/flow/blocks.html +1 -1
- data/_includes/flow/feature_block.html +3 -0
- data/_includes/flow/flow_inner.html +1 -1
- data/_includes/flow/members.html +26 -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/_layouts/post.html +20 -7
- data/_sass/app/overrides.scss +26 -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/documentation.scss +39 -0
- data/_sass/core/flow.scss +108 -83
- data/_sass/core/fontello.scss +178 -45
- 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 +76 -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 +147 -22
- data/assets/js/vendor/ofi.js +132 -0
- metadata +27 -20
- data/_includes/flow/members-section.html +0 -24
- data/_includes/sticky-tab-bar.html +0 -61
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
|
}
|
data/_sass/core/navbar.scss
CHANGED
@@ -1,28 +1,82 @@
|
|
1
1
|
#wrapper {
|
2
|
+
@include media-breakpoint-up($nav_expand_point) {
|
3
|
+
.navbar.hover_animated .nav-item > .dropdown-menu {
|
4
|
+
display: block;
|
5
|
+
opacity: 0;
|
6
|
+
visibility: hidden;
|
7
|
+
transition: 0.3s;
|
8
|
+
margin-top: 0;
|
9
|
+
}
|
10
|
+
.navbar.hover_animated .nav-item:hover .nav-link {
|
11
|
+
color: #fff;
|
12
|
+
}
|
13
|
+
.navbar.hover_animated .dropdown-menu.fade-down {
|
14
|
+
top: 80%;
|
15
|
+
transform: rotateX(-75deg);
|
16
|
+
transform-origin: 0% 0%;
|
17
|
+
}
|
18
|
+
.navbar.hover_animated .dropdown-menu.fade-up {
|
19
|
+
top: 180%;
|
20
|
+
}
|
21
|
+
.navbar.hover_animated .nav-item:hover > .dropdown-menu {
|
22
|
+
transition: 0.3s;
|
23
|
+
opacity: 1;
|
24
|
+
visibility: visible;
|
25
|
+
top: 100%;
|
26
|
+
transform: rotateX(0deg);
|
27
|
+
}
|
28
|
+
}
|
29
|
+
|
2
30
|
#universal_nav {
|
31
|
+
z-index: 2;
|
32
|
+
position: static;
|
3
33
|
padding-top: $universal_navbar_height_padding;
|
4
34
|
padding-bottom: $universal_navbar_height_padding;
|
5
35
|
background-color: $universal_navbar_bg_color;
|
6
36
|
color: $universal_navbar_text_color;
|
7
37
|
.nav-item {
|
8
|
-
|
9
|
-
background-color: $secondary;
|
10
|
-
}
|
38
|
+
&.nav-item-icon {
|
11
39
|
a.nav-link {
|
40
|
+
padding: 5px 12px;
|
41
|
+
}
|
42
|
+
&:hover {
|
43
|
+
span {
|
12
44
|
color: $universal_navbar_text_color;
|
45
|
+
}
|
13
46
|
}
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
47
|
+
span {
|
48
|
+
color: #fff;
|
49
|
+
}
|
50
|
+
}
|
51
|
+
&:hover {
|
52
|
+
a.nav-link {
|
53
|
+
color: $universal_navbar_active_text_hover_color;
|
18
54
|
}
|
55
|
+
}
|
56
|
+
&.active {
|
57
|
+
background-color: $universal_navbar_active_bg_color;
|
58
|
+
a.nav-link {
|
59
|
+
color: $universal_navbar_active_text_color;
|
60
|
+
}
|
61
|
+
}
|
62
|
+
a.nav-link {
|
63
|
+
color: $universal_navbar_text_color;
|
64
|
+
padding: 5px 20px;
|
65
|
+
}
|
66
|
+
}
|
67
|
+
.navbar-toggler,
|
68
|
+
.dropdown_hamburger {
|
69
|
+
.icon-bar {
|
70
|
+
background-color: $universal_navbar_text_color;
|
71
|
+
}
|
19
72
|
}
|
20
73
|
.dropdown-menu {
|
21
|
-
|
74
|
+
z-index: 9999999;
|
22
75
|
}
|
23
76
|
}
|
24
77
|
#main-navigation {
|
25
78
|
padding-top: $navbar_height_padding;
|
79
|
+
z-index: 999;
|
26
80
|
padding-bottom: $navbar_height_padding;
|
27
81
|
background-color: $navbar_bg_color !important;
|
28
82
|
color: $navbar_text_color;
|
@@ -33,43 +87,42 @@
|
|
33
87
|
}
|
34
88
|
}
|
35
89
|
.nav-item {
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
}
|
43
|
-
}
|
44
|
-
a.nav-link {
|
45
|
-
color: $navbar_text_color;
|
46
|
-
}
|
47
|
-
}
|
48
|
-
.navbar-toggler {
|
49
|
-
.icon-bar {
|
50
|
-
background-color: $navbar_text_color;
|
90
|
+
&.active {
|
91
|
+
a::before {
|
92
|
+
display: block;
|
93
|
+
opacity: 1;
|
94
|
+
width: 100% !important;
|
95
|
+
left: 0 !important;
|
51
96
|
}
|
97
|
+
}
|
98
|
+
a.nav-link {
|
99
|
+
color: $navbar_text_color;
|
100
|
+
}
|
52
101
|
}
|
53
|
-
.navbar-toggler
|
102
|
+
.navbar-toggler,
|
103
|
+
.dropdown_hamburger {
|
54
104
|
.icon-bar {
|
55
105
|
background-color: $navbar_text_color;
|
56
106
|
}
|
57
107
|
}
|
58
108
|
.search {
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
109
|
+
.dropdown-menu.show {
|
110
|
+
right: 0 !important;
|
111
|
+
min-width: 300px;
|
112
|
+
left: auto;
|
113
|
+
}
|
114
|
+
button.btn.btn-outline-primary.border-0 {
|
115
|
+
display: block;
|
116
|
+
border-radius: 0px;
|
117
|
+
}
|
64
118
|
}
|
65
119
|
}
|
66
120
|
// Multi-level dropdowns
|
67
121
|
.navbar {
|
68
122
|
li {
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
123
|
+
@include media-breakpoint-down(sm) {
|
124
|
+
text-align: center;
|
125
|
+
}
|
73
126
|
}
|
74
127
|
.nav-item {
|
75
128
|
@include media-breakpoint-down(sm) {
|
@@ -91,7 +144,7 @@
|
|
91
144
|
height: 3px;
|
92
145
|
left: 50%;
|
93
146
|
position: absolute;
|
94
|
-
background
|
147
|
+
background: $primary;
|
95
148
|
transition: width 0.3s ease 0s, left 0.3s ease 0s;
|
96
149
|
width: 0;
|
97
150
|
}
|
@@ -119,39 +172,39 @@
|
|
119
172
|
}
|
120
173
|
}
|
121
174
|
.dropdown-menu {
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
175
|
+
background-color: #f9f9f9;
|
176
|
+
padding-top: 0px;
|
177
|
+
padding-bottom: 0px;
|
178
|
+
border-radius: 0px;
|
179
|
+
@include media-breakpoint-down(sm) {
|
180
|
+
padding: 10px;
|
181
|
+
padding-top: 10px;
|
182
|
+
padding-bottom: 10px;
|
183
|
+
}
|
131
184
|
a {
|
132
185
|
cursor: pointer;
|
133
|
-
|
134
|
-
padding: .5rem 1.5rem;
|
135
|
-
width:100%;
|
186
|
+
color: #000;
|
187
|
+
padding: 0.5rem 1.5rem;
|
188
|
+
width: 100%;
|
136
189
|
display: inline-block;
|
137
190
|
}
|
138
191
|
li {
|
139
192
|
&:hover {
|
140
|
-
|
193
|
+
background-color: $primary;
|
194
|
+
color: #fff;
|
195
|
+
& > a {
|
141
196
|
color: #fff;
|
142
|
-
|
143
|
-
|
144
|
-
text-decoration: none;
|
145
|
-
}
|
197
|
+
text-decoration: none;
|
198
|
+
}
|
146
199
|
}
|
147
200
|
}
|
148
201
|
}
|
149
202
|
|
150
203
|
.dropdown-item {
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
204
|
+
padding: 0;
|
205
|
+
@include media-breakpoint-down(sm) {
|
206
|
+
text-align: center;
|
207
|
+
}
|
155
208
|
&.active {
|
156
209
|
color: inherit;
|
157
210
|
text-decoration: none;
|
@@ -165,9 +218,9 @@
|
|
165
218
|
&:hover {
|
166
219
|
background-color: $primary;
|
167
220
|
color: #fff;
|
168
|
-
|
169
|
-
|
170
|
-
|
221
|
+
& > a {
|
222
|
+
color: #fff;
|
223
|
+
text-decoration: none;
|
171
224
|
}
|
172
225
|
}
|
173
226
|
}
|
@@ -238,4 +291,64 @@
|
|
238
291
|
}
|
239
292
|
}
|
240
293
|
}
|
294
|
+
.dropdown_hamburger {
|
295
|
+
button {
|
296
|
+
background: none;
|
297
|
+
border: none;
|
298
|
+
/* remove the blue outline when active or focused */
|
299
|
+
&:active,
|
300
|
+
&:focus {
|
301
|
+
outline: 0;
|
302
|
+
}
|
303
|
+
}
|
304
|
+
|
305
|
+
.icon-bar {
|
306
|
+
display: block;
|
307
|
+
width: 22px;
|
308
|
+
height: 2px;
|
309
|
+
border-radius: 1px;
|
310
|
+
margin: 4px 0 4px 0;
|
311
|
+
transition: transform opacity filter transform-origin 0.2s;
|
312
|
+
}
|
313
|
+
.icon-bar {
|
314
|
+
/* .navbar closed top .icon-bar no rotation - straight */
|
315
|
+
&:nth-of-type(1) {
|
316
|
+
transform: rotate(0);
|
317
|
+
}
|
318
|
+
|
319
|
+
/* .navbar open middle .icon-bar visible */
|
320
|
+
&:nth-of-type(2) {
|
321
|
+
opacity: 1;
|
322
|
+
filter: alpha(opacity=100);
|
323
|
+
}
|
324
|
+
|
325
|
+
/* .navbar open bottom .icon-bar no rotation - straight */
|
326
|
+
&:nth-of-type(3) {
|
327
|
+
transform: rotate(0);
|
328
|
+
}
|
329
|
+
}
|
330
|
+
/* styles for when .navbar is closed */
|
331
|
+
&.show {
|
332
|
+
/* basic styles for each icon bar */
|
333
|
+
.icon-bar {
|
334
|
+
/* .navbar open top .icon-bar rotated down 45° */
|
335
|
+
&:nth-of-type(1) {
|
336
|
+
transform: rotate(45deg);
|
337
|
+
transform-origin: 10% 10%;
|
338
|
+
}
|
339
|
+
|
340
|
+
/* .navbar open middle .icon-bar invisible */
|
341
|
+
&:nth-of-type(2) {
|
342
|
+
opacity: 0;
|
343
|
+
filter: alpha(opacity=0);
|
344
|
+
}
|
345
|
+
|
346
|
+
/* .navbar open bottom .icon-bar rotated up 45° */
|
347
|
+
&:nth-of-type(3) {
|
348
|
+
transform: rotate(-45deg);
|
349
|
+
transform-origin: 10% 90%;
|
350
|
+
}
|
351
|
+
}
|
352
|
+
}
|
353
|
+
}
|
241
354
|
}
|
@@ -0,0 +1,35 @@
|
|
1
|
+
#wrapper {
|
2
|
+
#tabbed-nav-bar {
|
3
|
+
z-index: 9999999;
|
4
|
+
position: inherit;
|
5
|
+
&.fixed-top {
|
6
|
+
z-index: 999999;
|
7
|
+
position: fixed;
|
8
|
+
}
|
9
|
+
nav.navbar {
|
10
|
+
min-height: $tabbed_nav_height !important;
|
11
|
+
background-color: $tabbed_nav_bg !important;
|
12
|
+
span.icon-bar {
|
13
|
+
background-color: $tabbed_nav_text_colour;
|
14
|
+
}
|
15
|
+
a#sub-navigation-header {
|
16
|
+
color: $tabbed_nav_text_colour;
|
17
|
+
}
|
18
|
+
.nav-item {
|
19
|
+
a.nav-link {
|
20
|
+
display: block;
|
21
|
+
color: $tabbed_nav_text_colour;
|
22
|
+
&.active {
|
23
|
+
background-color: $tabbed_nav_active_bg_colour !important;
|
24
|
+
color: $tabbed_nav_active_colour !important;
|
25
|
+
}
|
26
|
+
}
|
27
|
+
}
|
28
|
+
.nav-item.dropdown.show {
|
29
|
+
a.nav-link.dropdown-toggle {
|
30
|
+
color: $tabbed_nav_active_colour !important;
|
31
|
+
}
|
32
|
+
}
|
33
|
+
}
|
34
|
+
}
|
35
|
+
}
|
data/_sass/core/theme.scss
CHANGED
@@ -1,56 +1,86 @@
|
|
1
1
|
#wrapper {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
2
|
+
#main_content {
|
3
|
+
ul {
|
4
|
+
list-style: none;
|
5
|
+
li {
|
6
|
+
&::before {
|
7
|
+
content: "\2022";
|
8
|
+
color: $primary;
|
9
|
+
font-weight: bold;
|
10
|
+
display: inline-block;
|
11
|
+
width: 1em;
|
12
|
+
margin-left: -1em;
|
6
13
|
}
|
7
|
-
|
8
|
-
|
14
|
+
ul > li {
|
15
|
+
&::before {
|
16
|
+
content: "\2022";
|
17
|
+
color: transparent;
|
18
|
+
font-weight: bold;
|
19
|
+
display: block;
|
20
|
+
width: 0.5em;
|
21
|
+
left: -0.5em;
|
22
|
+
height: 0.5em;
|
23
|
+
border: 1px solid $primary;
|
24
|
+
border-radius: 100%;
|
25
|
+
position: relative;
|
26
|
+
top: 0.5em;
|
27
|
+
}
|
9
28
|
}
|
29
|
+
}
|
10
30
|
}
|
11
|
-
|
12
|
-
|
13
|
-
|
31
|
+
}
|
32
|
+
.btn {
|
33
|
+
&.btn-primary {
|
34
|
+
color: #fff;
|
14
35
|
}
|
15
|
-
|
16
|
-
|
17
|
-
font-size: 1.4rem;
|
18
|
-
}
|
36
|
+
&.btn-secondary {
|
37
|
+
color: #fff;
|
19
38
|
}
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
position: relative;
|
29
|
-
background:#EDEDED;
|
30
|
-
&::before{
|
31
|
-
font-family:Arial;
|
32
|
-
content: "\201C";
|
33
|
-
color:$primary;
|
34
|
-
font-size:6em;
|
35
|
-
position: absolute;
|
36
|
-
left: 10px;
|
37
|
-
top:-10px;
|
38
|
-
}
|
39
|
+
}
|
40
|
+
.dotted {
|
41
|
+
border: 6px dotted $primary;
|
42
|
+
border-radius: 10px;
|
43
|
+
}
|
44
|
+
.blog-content {
|
45
|
+
@include media-breakpoint-up(xl) {
|
46
|
+
font-size: 1.4rem;
|
39
47
|
}
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
48
|
+
}
|
49
|
+
blockquote {
|
50
|
+
width: 100%;
|
51
|
+
font-family: Open Sans;
|
52
|
+
font-style: italic;
|
53
|
+
color: #555555;
|
54
|
+
padding: 1.2em 30px 1.2em 75px;
|
55
|
+
border-left: 8px solid $primary;
|
56
|
+
line-height: 1.6;
|
57
|
+
position: relative;
|
58
|
+
background: #ededed;
|
59
|
+
&::before {
|
60
|
+
font-family: Arial;
|
61
|
+
content: "\201C";
|
62
|
+
color: $primary;
|
63
|
+
font-size: 6em;
|
64
|
+
position: absolute;
|
65
|
+
left: 10px;
|
66
|
+
top: -10px;
|
67
|
+
}
|
68
|
+
}
|
69
|
+
.card {
|
70
|
+
&.background_image {
|
71
|
+
img {
|
72
|
+
filter: brightness(0.6);
|
73
|
+
height: 100%;
|
74
|
+
}
|
52
75
|
}
|
53
|
-
.
|
54
|
-
|
76
|
+
.card-img-top {
|
77
|
+
height: 150px;
|
78
|
+
width: 100%;
|
79
|
+
object-fit: cover;
|
80
|
+
font-family: "object-fit: cover;";
|
55
81
|
}
|
82
|
+
}
|
83
|
+
.darken {
|
84
|
+
filter: brightness(0.5);
|
85
|
+
}
|
56
86
|
}
|