linaro-jekyll-theme 0.10.149 → 1.0
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/_theme-includes/_head/head.html +3 -0
- data/_includes/_theme-includes/_navigation/nav.html +118 -93
- data/_includes/_theme-includes/_script-includes/javascript.html +27 -27
- data/_layouts/blog.html +1 -1
- data/_layouts/default-plain.html +1 -1
- data/_layouts/default-stacked-breadcrumb.html +1 -1
- data/_layouts/default-stacked.html +1 -1
- data/_layouts/default.html +1 -1
- data/_layouts/post.html +4 -4
- data/_layouts/redirect.html +11 -0
- data/_sass/bootstrap/_variables.scss +2 -2
- data/_sass/core/blog.scss +123 -2
- data/_sass/core/breadcrumb.scss +53 -30
- data/_sass/core/carousel.scss +15 -0
- data/_sass/core/footer.scss +14 -2
- data/_sass/core/forms.scss +0 -0
- data/_sass/core/homepage.scss +5 -0
- data/_sass/core/nav.scss +405 -339
- data/_sass/core/old-search.scss +239 -0
- data/_sass/core/theme.scss +79 -170
- data/_sass/core/youtube.scss +65 -0
- data/assets/js/vendor/loadCSS.js +79 -0
- metadata +7 -8
- data/assets/css/main-blog.scss +0 -19
- data/assets/css/main-home.scss +0 -16
- data/assets/css/main-lightbox.scss +0 -22
- data/assets/css/main-openhours.scss +0 -19
- data/assets/css/main-products.scss +0 -20
- data/assets/css/main-projects.scss +0 -20
data/_sass/core/breadcrumb.scss
CHANGED
@@ -12,56 +12,79 @@
|
|
12
12
|
.breadcrumb{
|
13
13
|
margin-bottom: 0;
|
14
14
|
}
|
15
|
+
|
16
|
+
.breadcrumb-container{
|
17
|
+
padding-top: 5px;
|
18
|
+
padding-bottom: 5px;
|
19
|
+
}
|
15
20
|
}
|
16
21
|
|
22
|
+
/* Bread Crumb Headings */
|
17
23
|
|
18
|
-
.breadcrumb-container
|
19
|
-
|
24
|
+
.breadcrumb-inner-container h1, .breadcrumb-inner-container h2, .breadcrumb-inner-container h3 {
|
25
|
+
font-weight: 100 !important;
|
26
|
+
letter-spacing: 0 !important;
|
27
|
+
font-size: 34px !important;
|
28
|
+
color: #fff;
|
20
29
|
}
|
21
30
|
|
22
|
-
|
23
|
-
|
31
|
+
/* Bread Crumb Ordered List Style */
|
32
|
+
|
33
|
+
// Active Colour
|
34
|
+
ol.breadcrumb > li.active {
|
35
|
+
color: $navbar-base-text-color;
|
36
|
+
|
37
|
+
}
|
38
|
+
ol.breadcrumb li {
|
39
|
+
font-size: 14px;
|
24
40
|
}
|
25
|
-
/* Bread Crumb Headings */
|
26
41
|
|
27
|
-
.breadcrumb
|
28
|
-
|
29
|
-
.breadcrumb-container h3 {
|
30
|
-
color: #FFF;
|
31
|
-
letter-spacing: 2px;
|
42
|
+
ol.breadcrumb > li + li:before {
|
43
|
+
content: "\00bb\00a0";
|
32
44
|
}
|
33
|
-
/* Bread Crumb Ordered List Style */
|
34
45
|
|
35
|
-
.breadcrumb {
|
46
|
+
ol.breadcrumb {
|
36
47
|
background: transparent;
|
37
48
|
border: 0;
|
38
49
|
border-radius: 0;
|
39
50
|
display: block;
|
51
|
+
padding: 0;
|
40
52
|
}
|
41
|
-
|
42
|
-
|
43
|
-
background-image: url("../images/banner.jpg");
|
44
|
-
background-color: #010220;
|
45
|
-
padding:5px;
|
53
|
+
ol.breadcrumb li a {
|
54
|
+
color: #fff;
|
46
55
|
}
|
47
56
|
|
48
|
-
|
49
|
-
|
50
|
-
|
57
|
+
ol.breadcrumb span {
|
58
|
+
font-size: 10px;
|
59
|
+
letter-spacing: 1px;
|
60
|
+
text-transform: uppercase;
|
61
|
+
text-decoration: none;
|
62
|
+
color: #fff;
|
63
|
+
opacity: .5;
|
51
64
|
}
|
52
65
|
|
53
|
-
.breadcrumb
|
54
|
-
|
66
|
+
ol.breadcrumb li.active span {
|
67
|
+
opacity: 1;
|
55
68
|
}
|
56
|
-
|
57
|
-
|
58
|
-
padding: 0px;
|
69
|
+
ol.breadcrumb li span:hover {
|
70
|
+
opacity: 1;
|
59
71
|
}
|
60
72
|
|
61
|
-
|
62
|
-
|
73
|
+
|
74
|
+
/* Bread Crumb Container */
|
75
|
+
|
76
|
+
.breadcrumb-container{
|
77
|
+
background-color: $brand-primary !important;
|
78
|
+
background-image: none !important;
|
79
|
+
padding-top: 5px;
|
80
|
+
padding-bottom: 5px;
|
63
81
|
}
|
64
|
-
|
65
|
-
|
66
|
-
color:
|
82
|
+
|
83
|
+
.breadcrumb-container > p {
|
84
|
+
color: #fff;
|
67
85
|
}
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
|
90
|
+
|
data/_sass/core/carousel.scss
CHANGED
@@ -132,5 +132,20 @@ a.btn.btn-primary {
|
|
132
132
|
font-weight: bold;
|
133
133
|
border-color: rgb(25, 148, 123);
|
134
134
|
}
|
135
|
+
|
136
|
+
.owl-prev {
|
137
|
+
background-color: #cccccc !important;
|
138
|
+
transition: all 200ms linear;
|
139
|
+
}
|
140
|
+
.owl-next {
|
141
|
+
background-color: #cccccc !important;
|
142
|
+
transition: all 200ms linear;
|
143
|
+
}
|
144
|
+
.owl-prev:hover {
|
145
|
+
background-color: #545454 !important;
|
146
|
+
}
|
147
|
+
.owl-next:hover {
|
148
|
+
background-color: #545454 !important;
|
149
|
+
}
|
135
150
|
|
136
151
|
/* Icons */
|
data/_sass/core/footer.scss
CHANGED
@@ -3,6 +3,18 @@
|
|
3
3
|
padding-top: 40px;
|
4
4
|
padding-bottom:30px;
|
5
5
|
}
|
6
|
+
|
7
|
+
#footer .col-md-6.company-footer-bottom a {
|
8
|
+
color: $footer-text-color;
|
9
|
+
}
|
10
|
+
|
11
|
+
#footer .col-md-6.company-footer-bottom a:hover {
|
12
|
+
color: $brand-primary;
|
13
|
+
}
|
14
|
+
|
15
|
+
.content-container > div.row.sub-footer{
|
16
|
+
margin-top: 20px;
|
17
|
+
}
|
6
18
|
input#mc-embedded-subscribe {
|
7
19
|
color: #fff;
|
8
20
|
background-color: #717171;
|
@@ -103,11 +115,11 @@ div.row.footer-strip > div > div.pull-right > ul a:hover{
|
|
103
115
|
padding-left: 0px;
|
104
116
|
}
|
105
117
|
|
106
|
-
a.btn.btn-social-icon {
|
118
|
+
a.btn.btn-social-icon i {
|
107
119
|
color: $footer-text-color;
|
108
120
|
transition: color 1s ease;
|
109
121
|
}
|
110
|
-
a.btn.btn-social-icon:hover {
|
122
|
+
a.btn.btn-social-icon:hover i {
|
111
123
|
color: $brand-primary;
|
112
124
|
transition: color 1s ease;
|
113
125
|
}
|
File without changes
|
data/_sass/core/homepage.scss
CHANGED
data/_sass/core/nav.scss
CHANGED
@@ -1,4 +1,83 @@
|
|
1
1
|
//Navbar links colours, font and fadeinout animations.
|
2
|
+
|
3
|
+
// Media Queries
|
4
|
+
.dropdown-menu {
|
5
|
+
z-index: 25000 !important;
|
6
|
+
}
|
7
|
+
|
8
|
+
|
9
|
+
.mobile-link-inactive{
|
10
|
+
pointer-events: none;
|
11
|
+
cursor: default;
|
12
|
+
}
|
13
|
+
|
14
|
+
@media (min-width: $screen-lg) {
|
15
|
+
|
16
|
+
.navbar-collapse {
|
17
|
+
padding-top: 0px;
|
18
|
+
padding-right: 38px;
|
19
|
+
margin-right: -40px !important;
|
20
|
+
margin-left: -15px !important;
|
21
|
+
}
|
22
|
+
ul.dropdown-menu {
|
23
|
+
margin-top: -1px !important;
|
24
|
+
}
|
25
|
+
#navbar-buttons {
|
26
|
+
margin-right: 40px;
|
27
|
+
}
|
28
|
+
#navbar-collapse {
|
29
|
+
width: 80%;
|
30
|
+
float: right;
|
31
|
+
}
|
32
|
+
|
33
|
+
.navbar-right .dropdown-menu {
|
34
|
+
right: auto;
|
35
|
+
left: 0;
|
36
|
+
}
|
37
|
+
|
38
|
+
}
|
39
|
+
|
40
|
+
@media (max-width: 991px){
|
41
|
+
// Style for Home Page Nav - Transparent
|
42
|
+
nav.nav-light >
|
43
|
+
div#navbar-collapse {
|
44
|
+
background-color: white;
|
45
|
+
}
|
46
|
+
nav.nav-light div#navbar-collapse {background-color: white;}
|
47
|
+
|
48
|
+
nav.nav-light #navbar-buttons>li>a {
|
49
|
+
color: #444444 !important;
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
@media screen and (max-width: $screen-lg) and (min-width: 0px) {
|
54
|
+
|
55
|
+
ul#navbar-buttons>li {
|
56
|
+
padding-top: 15px;
|
57
|
+
}
|
58
|
+
|
59
|
+
button.navbar-toggle {
|
60
|
+
margin-right: 10px;
|
61
|
+
}
|
62
|
+
|
63
|
+
}
|
64
|
+
|
65
|
+
|
66
|
+
// Nav Bar Toggle
|
67
|
+
.navbar-toggle {
|
68
|
+
margin-top: 12px !important;
|
69
|
+
position: static !important;
|
70
|
+
}
|
71
|
+
|
72
|
+
#tabbed-nav-bar .navbar-toggle{
|
73
|
+
color:$brand-primary !important;
|
74
|
+
}
|
75
|
+
button.btn.btn-default.dropdown-toggle {
|
76
|
+
color: $navbar-base-text-color;
|
77
|
+
}
|
78
|
+
|
79
|
+
|
80
|
+
|
2
81
|
nav{
|
3
82
|
letter-spacing: 1px;
|
4
83
|
}
|
@@ -25,296 +104,180 @@ nav li a:hover{
|
|
25
104
|
-moz-transition: color .5s ease;
|
26
105
|
-webkit-transition: color .5s ease;
|
27
106
|
}
|
28
|
-
|
29
|
-
|
107
|
+
|
108
|
+
// Dark and Light Nav Bar
|
109
|
+
nav.nav-light #navbar-buttons > li > a {
|
110
|
+
color:#fff;
|
30
111
|
}
|
31
112
|
|
32
|
-
|
33
|
-
|
113
|
+
nav.nav-dark #navbar-buttons > li > a {
|
114
|
+
color:#000;
|
34
115
|
}
|
35
116
|
|
36
|
-
|
117
|
+
nav.nav-light#main-navigation #navbar_svg .cls-2 {
|
118
|
+
fill: #fff;
|
119
|
+
}
|
37
120
|
|
38
|
-
|
39
|
-
|
121
|
+
nav.nav-light {
|
122
|
+
background: transparent;
|
40
123
|
}
|
41
124
|
|
42
|
-
|
43
|
-
|
125
|
+
nav.nav-dark {
|
126
|
+
background: transparent;
|
44
127
|
}
|
45
128
|
|
46
|
-
|
47
|
-
|
48
|
-
display: none;
|
49
|
-
min-width: 37px;
|
129
|
+
nav.nav-light button.navbar-toggle .icon-bar {
|
130
|
+
background-color:#fff !important;
|
50
131
|
}
|
51
132
|
|
52
|
-
|
53
|
-
|
54
|
-
|
133
|
+
nav.nav-dark button.navbar-toggle .icon-bar {
|
134
|
+
background-color:#fff !important;
|
135
|
+
}
|
136
|
+
|
137
|
+
// Nav Bar SVG Style
|
138
|
+
svg#navbar_svg {
|
139
|
+
height: 66px;
|
55
140
|
padding-top: 5px;
|
56
141
|
padding-bottom: 5px;
|
57
142
|
}
|
58
|
-
|
59
|
-
|
60
|
-
height:70px;
|
61
|
-
width:auto;
|
62
|
-
}
|
63
|
-
@media (max-width: 1200px){
|
64
|
-
height:50px;
|
65
|
-
width:auto;
|
66
|
-
}
|
67
|
-
|
143
|
+
nav.nav-light .cls-2 {
|
144
|
+
fill: #666;
|
68
145
|
}
|
69
146
|
|
70
|
-
|
71
|
-
|
72
|
-
@media (min-width: 1200px){
|
73
|
-
padding-top: 5px;
|
74
|
-
padding-bottom: 5px;
|
75
|
-
}
|
76
|
-
@media (max-width: 1199px){
|
77
|
-
padding-top: 15px;
|
78
|
-
padding-bottom: 15px;
|
79
|
-
padding-left: 10px;
|
80
|
-
}
|
147
|
+
nav.nav-light .cls-2 {
|
148
|
+
fill: #fff;
|
81
149
|
}
|
82
150
|
|
83
|
-
|
84
|
-
#
|
85
|
-
width:100%;
|
86
|
-
}
|
87
|
-
#searchform{
|
88
|
-
margin-bottom: 20px;
|
89
|
-
}
|
90
|
-
#navbar-collapse {
|
91
|
-
padding-top:5px;
|
92
|
-
}
|
93
|
-
#navbar-buttons{
|
94
|
-
margin-top: -10px;
|
95
|
-
}
|
96
|
-
button.navbar-toggle {
|
97
|
-
margin-right: 10px;
|
98
|
-
}
|
99
|
-
#searchform button.btn.btn-default {
|
100
|
-
height: 45px;
|
101
|
-
}
|
102
|
-
|
103
|
-
.navbar-collapse form[role="search"]{
|
104
|
-
margin-bottom:10px;
|
105
|
-
}
|
151
|
+
nav.nav-dark .cls-2 {
|
152
|
+
fill: #000;
|
106
153
|
}
|
107
154
|
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
max-height: 270px;
|
155
|
+
// Sub Menu for Boostrap NavBar
|
156
|
+
.dropdown-submenu {
|
157
|
+
position:relative;
|
112
158
|
}
|
113
|
-
.
|
114
|
-
top:
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
159
|
+
.dropdown-submenu>.dropdown-menu {
|
160
|
+
top:0;
|
161
|
+
left:100%;
|
162
|
+
margin-top:-6px;
|
163
|
+
margin-left:-1px;
|
164
|
+
-webkit-border-radius:0 6px 6px 6px;
|
165
|
+
-moz-border-radius:0 6px 6px 6px;
|
166
|
+
border-radius:0 6px 6px 6px;
|
120
167
|
}
|
121
|
-
.
|
122
|
-
|
123
|
-
padding: 8px 12px;
|
124
|
-
border-radius: 0px;
|
125
|
-
border-width: 0px;
|
126
|
-
color: $navbar-base-text-color;
|
127
|
-
border-color: rgb(231, 231, 231);
|
128
|
-
box-shadow: none;
|
129
|
-
outline: none;
|
168
|
+
.dropdown-submenu:hover>.dropdown-menu {
|
169
|
+
display:block;
|
130
170
|
}
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
171
|
+
.dropdown-submenu>a:after {
|
172
|
+
display:block;
|
173
|
+
content:" ";
|
174
|
+
float:right;
|
175
|
+
width:0;
|
176
|
+
height:0;
|
177
|
+
border-color:transparent;
|
178
|
+
border-style:solid;
|
179
|
+
border-width:5px 0 5px 5px;
|
180
|
+
border-left-color:#cccccc;
|
181
|
+
margin-top:5px;
|
182
|
+
margin-right:-10px;
|
137
183
|
}
|
138
|
-
|
139
|
-
|
140
|
-
color: $brand-primary;
|
141
|
-
transition: color .5s ease;
|
142
|
-
-moz-transition: color .5s ease;
|
143
|
-
-webkit-transition: color .5s ease;
|
184
|
+
.dropdown-submenu:hover>a:after {
|
185
|
+
border-left-color:#ffffff;
|
144
186
|
}
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
187
|
+
.dropdown-submenu.pull-left {
|
188
|
+
float:none;}
|
189
|
+
.dropdown-submenu:hover>a:after {
|
190
|
+
border-left-color:#ffffff;
|
191
|
+
}
|
192
|
+
.dropdown-submenu.pull-left {
|
193
|
+
float:none;
|
194
|
+
}
|
195
|
+
.dropdown-submenu.pull-left>.dropdown-menu {
|
196
|
+
left:-100%;
|
197
|
+
margin-left:10px;
|
198
|
+
-webkit-border-radius:6px 0 6px 6px;
|
199
|
+
-moz-border-radius:6px 0 6px 6px;
|
200
|
+
border-radius:6px 0 6px 6px;
|
152
201
|
}
|
153
202
|
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
}
|
163
|
-
ul.dropdown-menu {
|
164
|
-
margin-top: -1px !important;
|
165
|
-
}
|
166
|
-
.navbar-collapse form[role="search"] {
|
167
|
-
position: absolute;
|
168
|
-
min-width: 50px;
|
169
|
-
display: block;
|
170
|
-
}
|
171
|
-
.navbar-collapse form[role="search"] button {
|
172
|
-
margin-right: 0;
|
173
|
-
min-width: 90px;
|
174
|
-
}
|
175
|
-
.navbar-collapse form[role="search"] button[type="submit"]:hover {
|
176
|
-
color: $brand-primary;
|
177
|
-
transition: color .5s ease;
|
178
|
-
-moz-transition: color .5s ease;
|
179
|
-
-webkit-transition: color .5s ease;
|
180
|
-
}
|
181
|
-
.navbar-collapse form[role="search"] button,
|
182
|
-
.navbar-collapse form[role="search"] input {
|
183
|
-
height:51px;
|
184
|
-
padding: 15px 12px;
|
185
|
-
}
|
186
|
-
.navbar-collapse form[role="search"] input {
|
187
|
-
padding: 25px 12px;
|
188
|
-
font-size: 18pt;
|
189
|
-
opacity: 0;
|
190
|
-
display: none;
|
191
|
-
}
|
192
|
-
.navbar-collapse form[role="search"].active {
|
193
|
-
width: 100%;
|
194
|
-
transition: width 2s ease;
|
195
|
-
-moz-transition: width 2s ease;
|
196
|
-
-webkit-transition: width 2s ease;
|
197
|
-
}
|
198
|
-
.navbar-collapse form[role="search"].active button,
|
199
|
-
.navbar-collapse form[role="search"].active input {
|
200
|
-
display: table-cell;
|
201
|
-
opacity: 1;
|
202
|
-
}
|
203
|
-
.navbar-collapse form[role="search"].active input {
|
204
|
-
width: 650px;
|
205
|
-
height: 51px;
|
206
|
-
text-align: right;
|
207
|
-
transition: width 1s ease;
|
208
|
-
-moz-transition: width 1s ease;
|
209
|
-
-webkit-transition: width 1s ease;
|
210
|
-
}
|
211
|
-
.navbar-collapse form[role="search"].active button[type="submit"] {
|
212
|
-
background-color: transparent;
|
213
|
-
}
|
214
|
-
.navbar-collapse form[role="search"].active button[type="reset"] {
|
215
|
-
min-width: 40px;
|
216
|
-
background-color: $navbar-inverse-bg;
|
217
|
-
display: table-cell;
|
218
|
-
}
|
219
|
-
.navbar-collapse form[role="search"].active button[type="submit"]:hover {
|
220
|
-
display: table-cell;
|
221
|
-
color: $brand-primary;
|
222
|
-
transition: color .5s ease;
|
223
|
-
-moz-transition: color .5s ease;
|
224
|
-
-webkit-transition: color .5s ease;
|
225
|
-
}
|
226
|
-
.navbar-collapse form[role="search"].active button[type="reset"]:hover {
|
227
|
-
display: table-cell;
|
228
|
-
color: $brand-primary;
|
229
|
-
transition: color .5s ease;
|
230
|
-
-moz-transition: color .5s ease;
|
231
|
-
-webkit-transition: color .5s ease;
|
232
|
-
}
|
233
|
-
form#searchform {
|
234
|
-
width: auto;
|
235
|
-
margin-top: 13px;
|
236
|
-
}
|
237
|
-
nav form[role="search"] #searchform input {
|
238
|
-
height:51px;
|
239
|
-
width: 600px;
|
240
|
-
}
|
241
|
-
#navbar-buttons {
|
242
|
-
margin-right: 40px;
|
243
|
-
}
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
#navbar-collapse {
|
248
|
-
width: 80%;
|
249
|
-
float: right;
|
250
|
-
}
|
251
|
-
|
203
|
+
.dropdown-submenu > ul.dropdown-menu > li > a {
|
204
|
+
color: $navbar-base-text-color;
|
205
|
+
}
|
206
|
+
.dropdown-submenu > ul.dropdown-menu > li > a:hover {
|
207
|
+
color: $brand-primary;
|
208
|
+
text-decoration: none;
|
209
|
+
transition: 500ms all ease;
|
252
210
|
}
|
253
211
|
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
212
|
+
.dropdown-submenu.pull-left>.dropdown-menu {
|
213
|
+
left:-100%;
|
214
|
+
margin-left:10px;
|
215
|
+
-webkit-border-radius:6px 0 6px 6px;
|
216
|
+
-moz-border-radius:6px 0 6px 6px;
|
217
|
+
border-radius:6px 0 6px 6px;
|
258
218
|
}
|
259
219
|
|
260
|
-
|
261
|
-
|
220
|
+
.dropdown-submenu > ul.dropdown-menu > li > a {
|
221
|
+
color: $navbar-base-text-color;
|
262
222
|
}
|
263
|
-
|
264
|
-
|
223
|
+
.dropdown-submenu > ul.dropdown-menu > li > a:hover {
|
224
|
+
color: $brand-primary;
|
225
|
+
text-decoration: none;
|
226
|
+
transition: 500ms all ease;
|
265
227
|
}
|
266
228
|
|
267
|
-
|
268
|
-
|
269
|
-
left: 100%;
|
270
|
-
position: absolute;
|
271
|
-
top: 0;
|
272
|
-
visibility: hidden;
|
273
|
-
margin-top: -1px;
|
229
|
+
.dropdown-submenu > ul.dropdown-menu {
|
230
|
+
margin-left: -1px;
|
274
231
|
}
|
275
232
|
|
276
|
-
|
277
|
-
|
233
|
+
ul#navbar-buttons > li > ul.dropdown-menu {
|
234
|
+
top: 67px;
|
278
235
|
}
|
279
236
|
|
280
|
-
|
281
|
-
|
237
|
+
// Tabbed nav bar css
|
238
|
+
|
239
|
+
#tabbed-nav-bar .nav-tabs > li > a {
|
240
|
+
color: black;
|
282
241
|
}
|
283
242
|
|
284
|
-
|
285
|
-
|
243
|
+
// Navbar Brand
|
244
|
+
.navbar-brand {
|
245
|
+
@media (min-width: 1200px){
|
246
|
+
padding-top: 0px;
|
247
|
+
padding-bottom: 0px;
|
248
|
+
padding-left: 15px;
|
249
|
+
}
|
250
|
+
@media (max-width: 1199px){
|
251
|
+
padding-top: 0px;
|
252
|
+
padding-bottom: 0px;
|
253
|
+
padding-left: 5px;
|
254
|
+
}
|
286
255
|
}
|
287
256
|
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
left: -7px;
|
294
|
-
top: 10px;
|
257
|
+
#brand-image {
|
258
|
+
height:66px;
|
259
|
+
width:auto;
|
260
|
+
padding-top: 5px;
|
261
|
+
padding-bottom: 5px;
|
295
262
|
}
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
left: 10px;
|
302
|
-
top: 11px;
|
303
|
-
left: -6px;
|
263
|
+
#brand-image {
|
264
|
+
@media (max-width: 1200px){
|
265
|
+
height:70px;
|
266
|
+
width:auto;
|
267
|
+
}
|
304
268
|
}
|
305
269
|
|
306
270
|
|
307
|
-
|
308
|
-
|
309
|
-
|
271
|
+
.navbar-collapse {
|
272
|
+
position: relative;
|
273
|
+
max-height: 270px;
|
310
274
|
}
|
311
275
|
|
276
|
+
|
312
277
|
.input-group-btn {
|
313
278
|
min-width: 50px;
|
314
279
|
}
|
315
280
|
|
316
|
-
|
317
|
-
|
318
281
|
nav > li {
|
319
282
|
font-size: 14px;
|
320
283
|
}
|
@@ -355,71 +318,18 @@ nav > ul.navbar-right {
|
|
355
318
|
min-width: 620px;
|
356
319
|
}
|
357
320
|
|
358
|
-
//Search Dropdown
|
359
|
-
|
360
|
-
@media (min-width: 1200px) {
|
361
|
-
#searchDropdown {
|
362
|
-
top: 16%;
|
363
|
-
min-width: 234px;
|
364
|
-
width:781px;
|
365
|
-
font-size:16px;
|
366
|
-
background-color: $navbar-inverse-bg;
|
367
|
-
right: -2px;
|
368
|
-
}
|
369
|
-
#searchDropdown input {
|
370
|
-
width: 675px;
|
371
|
-
text-align: right;
|
372
|
-
color: $navbar-base-text-color;
|
373
|
-
background-color: $navbar-inverse-bg;
|
374
|
-
outline:0;
|
375
|
-
border:0;
|
376
|
-
outline-style: none;
|
377
|
-
box-shadow: none;
|
378
|
-
border-color: transparent;
|
379
|
-
|
380
|
-
}
|
381
|
-
#searchDropdown input:focus{
|
382
|
-
outline:0;
|
383
|
-
border:0
|
384
|
-
}
|
385
|
-
#searchDropdown button[type="reset"]{
|
386
|
-
font-size:16px;
|
387
|
-
background-color: $navbar-inverse-bg;
|
388
|
-
border:0;
|
389
|
-
}
|
390
|
-
#searchDropdown button[type="reset"]:hover{
|
391
|
-
color: $brand-primary;
|
392
|
-
transition: color 1s ease;
|
393
|
-
}
|
394
|
-
|
395
|
-
#searchDropdown button[type="submit"]{
|
396
|
-
font-size:16px;
|
397
|
-
background-color: $navbar-inverse-bg;
|
398
|
-
border:0;
|
399
|
-
}
|
400
|
-
#searchDropdown button[type="submit"]:hover{
|
401
|
-
color: $brand-primary;
|
402
|
-
transition: color 1s ease;
|
403
|
-
}
|
404
|
-
|
405
|
-
}
|
406
|
-
|
407
321
|
#tabbed-nav-bar {
|
408
322
|
background-color:white;
|
409
323
|
padding-bottom:10px;
|
410
324
|
height:80px;
|
411
325
|
}
|
412
|
-
|
413
|
-
color:$brand-primary !important;
|
414
|
-
}
|
326
|
+
|
415
327
|
|
416
328
|
#tabbed-nav-bar .collapse{
|
417
329
|
margin-bottom:-1px;
|
418
330
|
z-index: 1;
|
419
331
|
}
|
420
332
|
|
421
|
-
|
422
|
-
|
423
333
|
.sticky-nav {
|
424
334
|
position: fixed;
|
425
335
|
top: 0;
|
@@ -470,6 +380,10 @@ nav > ul.navbar-right {
|
|
470
380
|
line-height: 50px;
|
471
381
|
}
|
472
382
|
|
383
|
+
.navbar-header {
|
384
|
+
position: relative;
|
385
|
+
z-index: 1;
|
386
|
+
}
|
473
387
|
|
474
388
|
// Tabbed Nav bar
|
475
389
|
/* -------- Tabbed Content Sections ------- */
|
@@ -574,9 +488,7 @@ nav > ul.navbar-right {
|
|
574
488
|
button#closeForm {
|
575
489
|
color: $navbar-base-text-color;
|
576
490
|
}
|
577
|
-
|
578
|
-
color: $navbar-base-text-color;
|
579
|
-
}
|
491
|
+
|
580
492
|
@media (max-width: 1199px){
|
581
493
|
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a.dropdown-item {
|
582
494
|
color: $navbar-base-text-color;
|
@@ -593,65 +505,219 @@ li.side-nav-button {
|
|
593
505
|
li.side-nav-button:first-child {
|
594
506
|
border-top: 0px;
|
595
507
|
}
|
596
|
-
.nav-pills>li.side-nav-button>a {
|
508
|
+
.nav-pills > li.side-nav-button>a {
|
597
509
|
border-radius: 0px;
|
598
510
|
font-size: 16px;
|
599
511
|
}
|
600
512
|
|
601
|
-
|
602
|
-
|
603
|
-
|
513
|
+
|
514
|
+
ul#navbar-buttons > li {
|
515
|
+
padding-top: 15px;
|
604
516
|
}
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
margin-left:-1px;
|
610
|
-
-webkit-border-radius:0 6px 6px 6px;
|
611
|
-
-moz-border-radius:0 6px 6px 6px;
|
612
|
-
border-radius:0 6px 6px 6px;
|
517
|
+
|
518
|
+
.dropdown-menu li:hover {
|
519
|
+
background-color: #eee;
|
520
|
+
transition: all 500ms ease;
|
613
521
|
}
|
614
|
-
.dropdown-
|
615
|
-
|
522
|
+
.dropdown-menu li {
|
523
|
+
transition: all 500ms ease;
|
616
524
|
}
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
width:0;
|
622
|
-
height:0;
|
623
|
-
border-color:transparent;
|
624
|
-
border-style:solid;
|
625
|
-
border-width:5px 0 5px 5px;
|
626
|
-
border-left-color:#cccccc;
|
627
|
-
margin-top:5px;
|
628
|
-
margin-right:-10px;
|
525
|
+
|
526
|
+
#navbar-buttons .dropdown-menu {
|
527
|
+
background-color: #fff;
|
528
|
+
border-top: 2px solid $brand-primary;
|
629
529
|
}
|
630
|
-
|
631
|
-
|
530
|
+
|
531
|
+
|
532
|
+
|
533
|
+
#navbar-buttons .dropdown-menu>li>a {
|
534
|
+
color: #444444;
|
535
|
+
letter-spacing: 0;
|
536
|
+
font-size:12px;
|
537
|
+
outline: 0;
|
632
538
|
}
|
633
|
-
|
634
|
-
|
539
|
+
|
540
|
+
#navbar-buttons .dropdown-menu>li>a:hover {
|
541
|
+
color: $brand-primary;
|
542
|
+
letter-spacing: 0;
|
543
|
+
font-size:12px;
|
544
|
+
}
|
545
|
+
.navbar-inverse .navbar-nav>li>a {
|
546
|
+
color: #444444;
|
547
|
+
font-size: 12px;
|
548
|
+
font-weight: bold;
|
549
|
+
padding-right: 20px !important;
|
550
|
+
padding-left: 20px !important;
|
551
|
+
text-transform: uppercase;
|
552
|
+
letter-spacing: 0px;
|
553
|
+
}
|
554
|
+
.navbar-inverse #navbar-buttons >li>a {
|
555
|
+
color: $navbar-base-text-color;
|
635
556
|
}
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
-webkit-border-radius:6px 0 6px 6px;
|
640
|
-
-moz-border-radius:6px 0 6px 6px;
|
641
|
-
border-radius:6px 0 6px 6px;
|
557
|
+
|
558
|
+
.navbar-inverse #navbar-buttons>li>a:hover{
|
559
|
+
color: $brand-primary;
|
642
560
|
}
|
643
|
-
|
644
|
-
|
561
|
+
|
562
|
+
// Search Bar
|
563
|
+
|
564
|
+
i.glyphicon.glyphicon-search {
|
565
|
+
font-size: 16px;
|
645
566
|
}
|
646
|
-
|
567
|
+
|
568
|
+
|
569
|
+
div#search_bar {
|
570
|
+
width: 100%;
|
571
|
+
position: absolute;
|
572
|
+
text-align:right;
|
573
|
+
height: 66px;
|
574
|
+
right: 43px;
|
575
|
+
display: none;
|
576
|
+
background-color: $navbar-inverse-bg;
|
577
|
+
z-index: 99999;
|
578
|
+
}
|
579
|
+
|
580
|
+
div#search_bar input {
|
581
|
+
width:100%;
|
582
|
+
right: 0;
|
583
|
+
height: 66px;
|
584
|
+
border-radius:0;
|
585
|
+
outline:0;
|
586
|
+
border:0;
|
587
|
+
text-align: right;
|
588
|
+
font-size: 26px;
|
589
|
+
background-color: $navbar-inverse-bg;
|
647
590
|
color: $navbar-base-text-color;
|
591
|
+
border-color: inherit;
|
592
|
+
-webkit-box-shadow: none;
|
593
|
+
box-shadow: none;
|
648
594
|
}
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
595
|
+
|
596
|
+
div#search_bar input:focus {
|
597
|
+
border-color: inherit;
|
598
|
+
-webkit-box-shadow: none;
|
599
|
+
box-shadow: none;
|
600
|
+
outline: none;
|
653
601
|
}
|
654
602
|
|
655
|
-
|
603
|
+
#search_bar .input-group{
|
604
|
+
width: auto;
|
605
|
+
}
|
606
|
+
|
607
|
+
div#search_bar button {
|
608
|
+
width:50px;
|
609
|
+
margin-left: -10px;
|
610
|
+
border-radius: 0px;
|
611
|
+
height: 66px;
|
612
|
+
padding-top: 13px;
|
613
|
+
font-size: 16px;
|
614
|
+
background-color: $navbar-inverse-bg;
|
615
|
+
border:0;
|
656
616
|
color: $navbar-base-text-color;
|
657
617
|
}
|
618
|
+
div#search_bar button:hover {
|
619
|
+
background-color: $navbar-base-text-color;
|
620
|
+
color: $navbar-inverse-bg;
|
621
|
+
}
|
622
|
+
|
623
|
+
div#search_bar input::-webkit-input-placeholder {
|
624
|
+
color: $navbar-base-text-color !important;
|
625
|
+
}
|
626
|
+
|
627
|
+
div#search_bar input:-moz-placeholder { /* Firefox 18- */
|
628
|
+
color: $navbar-base-text-color !important;
|
629
|
+
}
|
630
|
+
|
631
|
+
div#search_bar input::-moz-placeholder { /* Firefox 19+ */
|
632
|
+
color: $navbar-base-text-color !important;
|
633
|
+
}
|
634
|
+
|
635
|
+
div#search_bar input:-ms-input-placeholder {
|
636
|
+
color: $navbar-base-text-color !important;
|
637
|
+
}
|
638
|
+
|
639
|
+
|
640
|
+
//NavBar Subtle Animations
|
641
|
+
li.dropdown-submenu.sub-menu:hover > a:after {
|
642
|
+
margin-right:-6px;
|
643
|
+
margin-top: 8px;
|
644
|
+
transform: rotateZ(90deg);
|
645
|
+
border-left-color:#a5a5a5;
|
646
|
+
}
|
647
|
+
|
648
|
+
li.dropdown-submenu.sub-menu > a:after {
|
649
|
+
transition: all 100ms linear;
|
650
|
+
}
|
651
|
+
|
652
|
+
li.dropdown.menu.open > a {
|
653
|
+
color: #a682b8 !important;
|
654
|
+
|
655
|
+
}
|
656
|
+
|
657
|
+
|
658
|
+
ul.dropdown-menu.menu {
|
659
|
+
padding-top: 0;
|
660
|
+
padding-bottom: 0;
|
661
|
+
border-radius: 0 !important;
|
662
|
+
}
|
663
|
+
|
664
|
+
// Linaro Sites Navigation
|
665
|
+
|
666
|
+
li#linaro-app-menu-item > a >i.glyphicon.glyphicon-th {
|
667
|
+
font-size: 16px;
|
668
|
+
margin-top: -17px;
|
669
|
+
}
|
670
|
+
|
671
|
+
li#linaro-app-menu-item {
|
672
|
+
top: -1px;
|
673
|
+
}
|
674
|
+
|
675
|
+
li#linaro-app-menu-item {
|
676
|
+
margin-right: 15px;
|
677
|
+
}
|
678
|
+
|
679
|
+
li#linaro-app-menu-item > ul {
|
680
|
+
right: 10px;
|
681
|
+
left: auto;
|
682
|
+
}
|
683
|
+
|
684
|
+
li#linaro-app-menu-item > ul {
|
685
|
+
background: none repeat scroll 0 0 #a080b7;
|
686
|
+
margin-top: 25px;
|
687
|
+
padding: 0 0 0 10px;
|
688
|
+
position: absolute;
|
689
|
+
width: 125px;
|
690
|
+
z-index: 999;
|
691
|
+
border:solid #a080b7 1px;
|
692
|
+
margin-left:-24px;
|
693
|
+
padding-left: 0;
|
694
|
+
}
|
695
|
+
|
696
|
+
li#linaro-app-menu-item > ul:before {
|
697
|
+
top:-34px;
|
698
|
+
left: 93%;
|
699
|
+
border: solid transparent;
|
700
|
+
content: " ";
|
701
|
+
height: 0;
|
702
|
+
width: 0;
|
703
|
+
position: absolute;
|
704
|
+
pointer-events: none;
|
705
|
+
}
|
706
|
+
|
707
|
+
|
708
|
+
li#linaro-app-menu-item > ul:before {
|
709
|
+
border-color: rgba(204, 204, 204, 0);
|
710
|
+
border-bottom-color: #a080b7;
|
711
|
+
border-width: 16px;
|
712
|
+
margin-left: -16px;
|
713
|
+
}
|
714
|
+
|
715
|
+
@media only screen and (max-width: 1459px) and (min-width: 992px) {
|
716
|
+
div#search_bar {
|
717
|
+
right: 0px;
|
718
|
+
}
|
719
|
+
}
|
720
|
+
|
721
|
+
|
722
|
+
|
723
|
+
|