linaro-jekyll-theme 0.1.6 → 0.1.7

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.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/_sass/blog-pages.scss +5 -0
  3. data/_sass/{animations.scss → core/animations.scss} +0 -0
  4. data/_sass/{blog.scss → core/blog.scss} +23 -5
  5. data/_sass/{breadcrumb.scss → core/breadcrumb.scss} +0 -0
  6. data/_sass/{carousel.scss → core/carousel.scss} +25 -11
  7. data/_sass/{cookieconsent.scss → core/cookieconsent.scss} +0 -0
  8. data/_sass/{critical.scss → core/critical.scss} +0 -0
  9. data/_sass/{fa.scss → core/fa.scss} +0 -0
  10. data/_sass/{flipclock.scss → core/flipclock.scss} +7 -7
  11. data/_sass/{font-awesome.min.scss → core/font-awesome.min.scss} +0 -0
  12. data/_sass/{fonts.scss → core/fonts.scss} +0 -0
  13. data/_sass/{footer.scss → core/footer.scss} +3 -0
  14. data/_sass/core/homepage.scss +16 -0
  15. data/_sass/{lightbox.scss → core/lightbox.scss} +0 -0
  16. data/_sass/{members-sprite.scss → core/members-sprite.scss} +0 -0
  17. data/_sass/{nav.scss → core/nav.scss} +3 -0
  18. data/_sass/{openhours.scss → core/openhours.scss} +5 -5
  19. data/_sass/{owl.carousel.min.scss → core/owl.carousel.min.scss} +0 -0
  20. data/_sass/{owl.theme.default.min.scss → core/owl.theme.default.min.scss} +0 -0
  21. data/_sass/{products.scss → core/products.scss} +13 -6
  22. data/_sass/{projects.scss → core/projects.scss} +9 -11
  23. data/_sass/{social-media-icons.scss → core/social-media-icons.scss} +0 -0
  24. data/_sass/{syntax.scss → core/syntax.scss} +0 -0
  25. data/_sass/{tables.scss → core/tables.scss} +1 -1
  26. data/_sass/{theme.scss → core/theme.scss} +45 -9
  27. data/_sass/documentation-pages.scss +3 -0
  28. data/_sass/home-page.scss +3 -0
  29. data/_sass/main.scss +17 -0
  30. data/_sass/openhours-page.scss +4 -0
  31. data/_sass/products-pages.scss +5 -0
  32. data/_sass/projects-pages.scss +5 -0
  33. metadata +32 -24
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3f23755c85cea41e6c993abb70ffc00d21874045
4
- data.tar.gz: 16442511e430ca7515b9927dc55dc8eb46fad242
3
+ metadata.gz: 688bbf6dfadc1555c7107ecbe73838a154fa1240
4
+ data.tar.gz: 73edc9071a6ef12e91a95074fd8a39cf350c643c
5
5
  SHA512:
6
- metadata.gz: ecb7a614e3f43b7994be420dc56c464cd466889ca97f38456e1a93929396a3feadced97c1ee4845a515c78daca43060638b76644b8a7b9685c1c49fa0881df64
7
- data.tar.gz: 4e8c97753b0ded90913e03626c6e425e69ca7e67ec3fbc4ca87f8dc13a2818eb884aeef964789d8c2286f1a5dd6685049a487b35c8161f50ebc0dfa7d8d9411d
6
+ metadata.gz: b76d5979106494f274e6dbe86aec8600326c6738a8a9d71e73433c2c41a2ea738dfeaecb24a5c43c995b997c0f8f011f41191a8e483f0f33cfd441e1afc57e33
7
+ data.tar.gz: e5e0b5aae840a33105320939839bf56ac1a8679599168e777503d4af3d6ff9840d543a14898378fc1589d723fd00d801dffaa931a86e33b38f70a28179a22a05
@@ -0,0 +1,5 @@
1
+ @import 'bootstrap/variables';
2
+
3
+ @import "core/blog";
4
+ @import "core/lightbox";
5
+ @import "core/syntax";
File without changes
@@ -50,11 +50,7 @@
50
50
  background-color: #19947b;
51
51
  color: #fff;
52
52
  }
53
- @media (max-width: 768px) {
54
- .blog-title {
55
- font-size: 34px;
56
- }
57
- }
53
+
58
54
  .blog-author-image{
59
55
  height: 83px;
60
56
  width: 83px;
@@ -186,3 +182,25 @@ a.featured_blog_post_text:hover{
186
182
 
187
183
  //Pagination centered style
188
184
  .pagination-centered { text-align: center;}
185
+
186
+
187
+ //Responsive CSS for Blog
188
+ @media(max-width:767px){
189
+
190
+ .blog-title{
191
+ width:95%;
192
+ font-size: 34px;
193
+ }
194
+ .blog-author-image {
195
+ height: 100px;
196
+ width: 100px;
197
+ }
198
+ .blog-post-content {
199
+ margin-top: 5px;
200
+ }
201
+
202
+ .blog_post{
203
+ padding:20px;
204
+ }
205
+
206
+ }
File without changes
@@ -1,19 +1,19 @@
1
- /* Mobile */
2
- // .homepage-image-owl{
3
- // height: auto;
4
- // width: auto;
5
- // }
1
+
6
2
  .homepage-image-owl{
7
- height: 150px;
3
+ height: auto;
8
4
  width: auto;
9
5
  }
10
6
  .homepage-image-project{
11
- height: 205.44px;
7
+ height: 206.5px;
12
8
  width: auto;
9
+ overflow: auto;
10
+ }
11
+ //Responsive CSS for Homepage
12
+ @media(max-width:767px){
13
+
14
+
13
15
  }
14
- // img .owl-lazy{
15
- // height:180px;
16
- // }
16
+
17
17
  @media only screen and (max-width: 500px) {
18
18
  .hero-banner {
19
19
  padding-top: 0px;
@@ -106,11 +106,25 @@ a.btn.btn-primary {
106
106
  .activity-holder p {
107
107
  height: 99px;
108
108
  }
109
- @media (min-width: 1200px) {
109
+ @media (min-width: 992px) {
110
110
  .row .activity-holder{
111
111
  height:529.44px;
112
112
  }
113
113
  }
114
+ @media (max-width: 991px) {
115
+ .row .activity-holder{
116
+ height:auto;
117
+ }
118
+ .activity-holder p {
119
+ height: auto;
120
+ }
121
+ .owl-text{
122
+ min-height:auto;
123
+ }
124
+ .activity-block {
125
+ margin-top: 70px;
126
+ }
127
+ }
114
128
 
115
129
  .activity-holder a.btn-primary:hover {
116
130
  background-color: rgb(25, 148, 123);
File without changes
File without changes
@@ -16,7 +16,7 @@
16
16
  .flip-clock-wrapper a {
17
17
  cursor: pointer;
18
18
  text-decoration: none;
19
- color: #19947b; }
19
+ color: #000; }
20
20
 
21
21
  .flip-clock-wrapper a:hover {
22
22
  color: #fff; }
@@ -78,7 +78,7 @@
78
78
  font-weight: bold;
79
79
  line-height: 87px;
80
80
  // border-radius: 6px;
81
- background: #000;
81
+ background: #fff;
82
82
  }
83
83
 
84
84
  .flip-clock-wrapper ul li {
@@ -137,7 +137,7 @@
137
137
  z-index: 5;
138
138
  width: 100%;
139
139
  height: 3px;
140
- background-color: #000;
140
+ background-color: #fff;
141
141
  background-color: rgba(0, 0, 0, 0.4); }
142
142
 
143
143
  .flip-clock-wrapper ul li a div.down {
@@ -157,10 +157,10 @@
157
157
  z-index: 1;
158
158
  width: 100%;
159
159
  height: 200%;
160
- color: #19947b;
161
- text-shadow: 0 1px 2px #000;
160
+ color: #000;
161
+ // text-shadow: 0 1px 2px #000;
162
162
  text-align: center;
163
- background-color: #333;
163
+ background-color: #fff;
164
164
  // border-radius: 6px;
165
165
  font-size: 70px; }
166
166
 
@@ -194,7 +194,7 @@
194
194
 
195
195
  .flip-clock-dot {
196
196
  display: block;
197
- background: #323434;
197
+ background: #000;
198
198
  width: 10px;
199
199
  height: 10px;
200
200
  position: absolute;
File without changes
@@ -71,6 +71,9 @@ div.row.footer-strip > div > div.pull-right > ul a:hover{
71
71
  line-height: 50px;
72
72
  color: #FFF;
73
73
  }
74
+ .coloured-bp{
75
+ color: $brand-primary;
76
+ }
74
77
  .main-footer-content{
75
78
  margin-bottom: 10px;
76
79
  }
@@ -0,0 +1,16 @@
1
+ //Home Page Heading
2
+ #homepage-heading {
3
+ color: $brand-warning;
4
+ font-size: 30pt;
5
+ font-weight: normal;
6
+ line-height: 1.25;
7
+ }
8
+
9
+ @media(max-width:991px){
10
+ #homepage-heading {
11
+ font-size: 14px;
12
+ }
13
+ p.sub-tag {
14
+ width:95%;
15
+ }
16
+ }
File without changes
@@ -407,6 +407,9 @@ nav > ul.navbar-right {
407
407
  #tabbed-nav-bar .tabbed-nav-btn{
408
408
  width:100%;
409
409
  }
410
+ #sub-navigation-header {
411
+ font-size: 14px;
412
+ }
410
413
  #tabbed-nav-bar .nav-tabs{
411
414
  background-color: $gray-darker;
412
415
  margin-top: -25px;
@@ -33,18 +33,18 @@
33
33
  //OpenHours Panel
34
34
  .openhours-panel {
35
35
  background-color: #553c97;
36
- background: url(asset_path("openhours-noise.png")) repeat;
36
+ // background: url(asset_path("openhours-noise.png")) repeat;
37
37
  padding:20px;
38
38
  color: #fff;
39
39
  margin-top: 40px;
40
40
  }
41
41
  .openhours-panel a {
42
- color: #010318;
43
- text-decoration: none;
42
+ color: #fff;
43
+ text-decoration: underline;
44
44
  }
45
45
  .openhours-panel a:hover{
46
- color: #010318;
47
- text-decoration: underline;
46
+ color: #fff;
47
+ text-decoration: none;
48
48
  }
49
49
  .openhours-panel p {
50
50
  color: #fff;
@@ -95,13 +95,7 @@
95
95
  vertical-align:middle;
96
96
  margin-bottom:3px;
97
97
  }
98
- @media(max-width: 992px){
99
- .photo {
100
- min-height: 233px;
101
-
102
- }
103
98
 
104
- }
105
99
 
106
100
  #collection-image{
107
101
  height:90px;
@@ -212,3 +206,16 @@ color: #19947b;
212
206
  .product-bottom-panel{
213
207
  margin-bottom: 30px;
214
208
  }
209
+
210
+
211
+ @media(max-width:991px){
212
+ .product-short-description {
213
+ min-height: 0px;
214
+ }
215
+ .product-short-description {
216
+ min-height: 0px;
217
+ }
218
+ .photo {
219
+ min-height: 0px;
220
+ }
221
+ }
@@ -4,12 +4,16 @@
4
4
  border-bottom: 1px solid $gray-lighter;
5
5
  }
6
6
  .project_image{
7
- border: 1px solid $brand-primary;
8
- margin-bottom: 20px;
9
- max-width: 100%;
10
- max-height: 100%;
7
+ width: auto;
8
+ height: 100%;
11
9
  }
12
- p.project_description {
10
+ .project_block a:first-child {
11
+ overflow: hidden;
12
+ height: 200px;
13
+ display: block;
14
+ border: 1px solid #19947b;
15
+ }
16
+ p.project_description {
13
17
  font-size: 11px;
14
18
  font-style: italic;
15
19
  height:50px;
@@ -26,9 +30,3 @@ div.project_filter_panel{
26
30
  div.project_filter_panel button {
27
31
  margin-bottom: 20px;
28
32
  }
29
- #project_grid .mix{
30
- }
31
- .project_image_holder{
32
- height: 200px;
33
- width: 255px;
34
- }
File without changes
@@ -13,7 +13,7 @@ table {
13
13
  letter-spacing: 0.5px;
14
14
  border-bottom: 5px $brand-primary solid;
15
15
  margin-bottom: 40px;
16
- overflow-x:scroll;
16
+ //overflow-x:scroll;
17
17
  }
18
18
 
19
19
  th {
@@ -4,10 +4,24 @@ body {
4
4
  letter-spacing: 0.5px;
5
5
  overflow-x: hidden;
6
6
  font-weight: 300;
7
+ height : 100%;
8
+ overflow: auto;
7
9
  font-family: 'LatoWeb', HelveticaNeue-Light, Helvetica Neue Light, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;
8
10
  -webkit-font-smoothing: antialiased;
9
11
  }
10
12
 
13
+ html.ios7 body {height: 100%;position: fixed;width: 100%;}
14
+
15
+ html {
16
+ height : 100%;
17
+ // overflow: hidden; Will break the sticky navbar - be warned
18
+ }
19
+
20
+ .members-img {
21
+ width: auto;
22
+ max-height: 100px;
23
+ }
24
+
11
25
  //Selection for Highlighting Text on Web Page.
12
26
  ::-webkit-selection,
13
27
  ::-moz-selection,
@@ -80,13 +94,6 @@ p .justified{
80
94
  .content-container ul { font-size:18px; }
81
95
  .content-container ol { font-size: 18px;}
82
96
 
83
- //Home Page Heading
84
- #homepage-heading {
85
- color: $brand-warning;
86
- font-size: 30pt;
87
- font-weight: normal;
88
- line-height: 1.25;
89
- }
90
97
 
91
98
 
92
99
  //Homepage Sub Tag
@@ -175,10 +182,9 @@ p.sub-tag {
175
182
  text-align: center;
176
183
  font-size:18px;
177
184
  color: #fff;
178
- background: url(asset_path("noise-1bbc9b.png")) repeat;
185
+ background: url() repeat;
179
186
  }
180
187
 
181
-
182
188
  //----------BOOTSTRAP STYLES ----------------
183
189
 
184
190
  .panel-primary {
@@ -206,3 +212,33 @@ p.sub-tag {
206
212
  background: linear-gradient(to bottom, #2a4b41 0%, #000000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
207
213
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=#2a4b41, endColorstr='#000000',GradientType=0 ); /* IE6-9 */
208
214
  }
215
+ .container .jumbotron, .container-fluid .jumbotron {
216
+ border-radius: 0px;
217
+ }
218
+
219
+ @media(max-width:991px){
220
+ .partners-panel {
221
+ height: auto;
222
+ }
223
+ }
224
+
225
+
226
+ .blog-read-more-btn{
227
+ background-color: white;
228
+ border: 2px solid black;
229
+ border-radius: 0px;
230
+ font-weight: normal;
231
+ color: $gray-base;
232
+ transition: all 1s ease;
233
+ padding: 6px;
234
+ }
235
+ .blog-read-more-btn:hover{
236
+ background-color: $brand-primary;
237
+ color: white;
238
+ transition: all 1s ease;
239
+ }
240
+ .blog-read-more-btn:active, .blog-read-more-btn:focus{
241
+ background-color: $brand-primary;
242
+ color: white;
243
+ transition: all 1s ease;
244
+ }
@@ -0,0 +1,3 @@
1
+ @import 'bootstrap/variables';
2
+
3
+ @import "core/syntax";
@@ -0,0 +1,3 @@
1
+ @import 'bootstrap/variables';
2
+ @import "core/carousel";
3
+ @import 'core/homepage';
data/_sass/main.scss ADDED
@@ -0,0 +1,17 @@
1
+ ---
2
+ ---
3
+
4
+ @import 'bootstrap';
5
+ @import 'bootstrap/variables';
6
+
7
+ @import "core/fonts";
8
+ @import "core/nav";
9
+ @import "core/theme";
10
+ @import "core/cookieconsent";
11
+ @import "core/footer";
12
+ @import "core/owl.carousel.min";
13
+ @import "core/owl.theme.default.min";
14
+ @import "core/social-media-icons";
15
+ @import "core/breadcrumb";
16
+ @import "core/tables";
17
+ @import "core/animations";
@@ -0,0 +1,4 @@
1
+ @import 'bootstrap/variables';
2
+
3
+ @import "core/flipclock";
4
+ @import "core/openhours";
@@ -0,0 +1,5 @@
1
+ @import 'bootstrap/variables';
2
+
3
+ @import "core/products";
4
+ @import "core/lightbox";
5
+ @import "core/carousel";
@@ -0,0 +1,5 @@
1
+ @import 'bootstrap/variables';
2
+
3
+ @import "core/projects";
4
+ @import "core/carousel";
5
+ @import "core/lightbox";
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: linaro-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kyle Kirkby
@@ -200,8 +200,7 @@ files:
200
200
  - _sass/_bootstrap-mincer.scss
201
201
  - _sass/_bootstrap-sprockets.scss
202
202
  - _sass/_bootstrap.scss
203
- - _sass/animations.scss
204
- - _sass/blog.scss
203
+ - _sass/blog-pages.scss
205
204
  - _sass/bootstrap/_alerts.scss
206
205
  - _sass/bootstrap/_badges.scss
207
206
  - _sass/bootstrap/_breadcrumbs.scss
@@ -272,27 +271,36 @@ files:
272
271
  - _sass/bootstrap/mixins/_text-emphasis.scss
273
272
  - _sass/bootstrap/mixins/_text-overflow.scss
274
273
  - _sass/bootstrap/mixins/_vendor-prefixes.scss
275
- - _sass/breadcrumb.scss
276
- - _sass/carousel.scss
277
- - _sass/cookieconsent.scss
278
- - _sass/critical.scss
279
- - _sass/fa.scss
280
- - _sass/flipclock.scss
281
- - _sass/font-awesome.min.scss
282
- - _sass/fonts.scss
283
- - _sass/footer.scss
284
- - _sass/lightbox.scss
285
- - _sass/members-sprite.scss
286
- - _sass/nav.scss
287
- - _sass/openhours.scss
288
- - _sass/owl.carousel.min.scss
289
- - _sass/owl.theme.default.min.scss
290
- - _sass/products.scss
291
- - _sass/projects.scss
292
- - _sass/social-media-icons.scss
293
- - _sass/syntax.scss
294
- - _sass/tables.scss
295
- - _sass/theme.scss
274
+ - _sass/core/animations.scss
275
+ - _sass/core/blog.scss
276
+ - _sass/core/breadcrumb.scss
277
+ - _sass/core/carousel.scss
278
+ - _sass/core/cookieconsent.scss
279
+ - _sass/core/critical.scss
280
+ - _sass/core/fa.scss
281
+ - _sass/core/flipclock.scss
282
+ - _sass/core/font-awesome.min.scss
283
+ - _sass/core/fonts.scss
284
+ - _sass/core/footer.scss
285
+ - _sass/core/homepage.scss
286
+ - _sass/core/lightbox.scss
287
+ - _sass/core/members-sprite.scss
288
+ - _sass/core/nav.scss
289
+ - _sass/core/openhours.scss
290
+ - _sass/core/owl.carousel.min.scss
291
+ - _sass/core/owl.theme.default.min.scss
292
+ - _sass/core/products.scss
293
+ - _sass/core/projects.scss
294
+ - _sass/core/social-media-icons.scss
295
+ - _sass/core/syntax.scss
296
+ - _sass/core/tables.scss
297
+ - _sass/core/theme.scss
298
+ - _sass/documentation-pages.scss
299
+ - _sass/home-page.scss
300
+ - _sass/main.scss
301
+ - _sass/openhours-page.scss
302
+ - _sass/products-pages.scss
303
+ - _sass/projects-pages.scss
296
304
  - assets/css/_bootstrap-compass.scss
297
305
  - assets/css/_bootstrap-mincer.scss
298
306
  - assets/css/_bootstrap-sprockets.scss