jumbo-jekyll-theme 5.6.9.2 → 5.6.9.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +10 -10
- data/_config.yml +213 -213
- data/_data/example-carousel-data-source.yml +36 -36
- data/_data/footer.yml +33 -33
- data/_data/nav.yml +17 -17
- data/_data/settings.yml +103 -103
- data/_data/tags.yml +11 -11
- data/_data/universal-nav.yml +7 -7
- data/_includes/breadcrumb.html +97 -97
- data/_includes/core/blocks.html +30 -30
- data/_includes/core/button.html +5 -5
- data/_includes/core/buttons.html +5 -5
- data/_includes/core/container_row.html +7 -7
- data/_includes/core/feature_block.html +43 -43
- data/_includes/core/full_width_row.html +5 -5
- data/_includes/core/members-section.html +32 -32
- data/_includes/core/slider.html +33 -33
- data/_includes/core/slider_row.html +2 -2
- data/_includes/core/title.html +3 -3
- data/_includes/core/youtube_video_embed.html +11 -11
- data/_includes/css.html +9 -9
- data/_includes/custom_include.html +13 -13
- data/_includes/custom_include_row.html +562 -562
- data/_includes/display-blog-posts.html +154 -154
- data/_includes/flow_inner.html +19 -19
- data/_includes/footer.html +68 -68
- data/_includes/google-analytics.html +16 -16
- data/_includes/head.html +19 -19
- data/_includes/image.html +6 -6
- data/_includes/javascript.html +10 -10
- data/_includes/jumbotron.html +115 -115
- data/_includes/linaro-404.html +19 -19
- data/_includes/nav.html +153 -153
- data/_includes/pagination.html +38 -38
- data/_includes/post-sidebar.html +182 -182
- data/_includes/responsive-image.html +5 -5
- data/_includes/schema.html +43 -43
- data/_includes/thumb.html +1 -1
- data/_includes/thumbnail_image.html +9 -9
- data/_includes/universal-nav.html +30 -30
- data/_layouts/author.html +5 -5
- data/_layouts/default.html +3 -3
- data/_layouts/error.html +25 -25
- data/_layouts/flow.html +35 -35
- data/_layouts/jumbotron.html +11 -11
- data/_layouts/post-index.html +16 -16
- data/_layouts/post.html +39 -39
- data/_sass/app/overrides.scss +65 -65
- data/_sass/app/search.scss +51 -51
- data/_sass/bootstrap/_variables.scss +932 -932
- data/_sass/core.scss +20 -20
- data/_sass/core/blog.scss +425 -425
- data/_sass/core/carousel-header.scss +90 -90
- data/_sass/core/error.scss +190 -190
- data/_sass/core/flow.scss +186 -186
- data/_sass/core/footer.scss +141 -141
- data/_sass/core/jumbotron.scss +279 -279
- data/_sass/core/normalize.scss +357 -357
- data/_sass/core/theme.scss +871 -871
- data/_sass/home.scss +2 -2
- data/assets/css/main-blog.scss +13 -13
- data/assets/css/main-error.scss +13 -13
- data/assets/css/main.scss +11 -11
- data/assets/js/app/facebook.js +7 -7
- data/assets/js/app/main.js +261 -261
- data/assets/js/pacakge-search.js +9 -9
- data/assets/js/package-blog.js +12 -12
- data/assets/js/package-extended.js +14 -14
- data/assets/js/package-home.js +14 -14
- data/assets/js/package-main.js +13 -13
- data/assets/js/package-search.js +8 -8
- data/assets/js/vendor/fess-ss.min.js +24 -24
- data/robots.txt +9 -9
- metadata +2 -16
data/_sass/core/flow.scss
CHANGED
@@ -1,186 +1,186 @@
|
|
1
|
-
// Styles for flow sections
|
2
|
-
// Members section
|
3
|
-
#flow_wrapper {
|
4
|
-
.row {
|
5
|
-
padding-top: $flow_row_padding;
|
6
|
-
padding-bottom: $flow_row_padding;
|
7
|
-
background-color: $body-bg;
|
8
|
-
position: relative;
|
9
|
-
&:first-child {
|
10
|
-
@media(max-width: $screen-sm-min){
|
11
|
-
padding-top:0px;
|
12
|
-
}
|
13
|
-
}
|
14
|
-
@media (min-width: $screen-sm-min) {
|
15
|
-
&.equal {
|
16
|
-
display: flex;
|
17
|
-
flex-wrap: wrap;
|
18
|
-
}
|
19
|
-
}
|
20
|
-
&.background_image_row {
|
21
|
-
background-size: cover !important;
|
22
|
-
background-repeat: no-repeat !important;
|
23
|
-
background-position: center center !important;
|
24
|
-
&.fixed {
|
25
|
-
background-attachment: fixed !important;
|
26
|
-
}
|
27
|
-
.title{
|
28
|
-
h1, h2, h3, h4, h5, h6 {
|
29
|
-
color: #fff;
|
30
|
-
}
|
31
|
-
}
|
32
|
-
p {
|
33
|
-
color: white;
|
34
|
-
}
|
35
|
-
}
|
36
|
-
.feature_block {
|
37
|
-
a.btn.btn-primary {
|
38
|
-
margin-top: 5px;
|
39
|
-
}
|
40
|
-
}
|
41
|
-
&.block_row {
|
42
|
-
.block {
|
43
|
-
@media(max-width: $screen-sm-min) {
|
44
|
-
&:not(:first-child) {
|
45
|
-
margin-top: $flow_row_padding;
|
46
|
-
}
|
47
|
-
}
|
48
|
-
.block-inner {
|
49
|
-
height: 100%;
|
50
|
-
display: flex;
|
51
|
-
flex-direction: column;
|
52
|
-
overflow:auto;
|
53
|
-
background-size: cover !important;
|
54
|
-
background-repeat: no-repeat !important;
|
55
|
-
background-position: center center !important;
|
56
|
-
border-radius: 5px;
|
57
|
-
border: 1px solid #ccc;
|
58
|
-
-webkit-box-shadow: 0px 0px 10px -4px rgba(0,0,0,0.75);
|
59
|
-
-moz-box-shadow: 0px 0px 10px -4px rgba(0,0,0,0.75);
|
60
|
-
box-shadow: 0px 0px 10px -4px rgba(0,0,0,0.75);
|
61
|
-
transition: all 200ms ease-in-out;
|
62
|
-
&.background_image_block .title {
|
63
|
-
h1, h2, h3, h4, h5, h6 {
|
64
|
-
color: #fff;
|
65
|
-
}
|
66
|
-
}
|
67
|
-
.title {
|
68
|
-
h1, h2, h3, h4, h5, h6 {
|
69
|
-
color: #3c3b39;
|
70
|
-
}
|
71
|
-
}
|
72
|
-
&.background_image_block p {
|
73
|
-
color: #fff;
|
74
|
-
}
|
75
|
-
p {
|
76
|
-
color: #3c3b39;
|
77
|
-
}
|
78
|
-
.block-inner img {
|
79
|
-
margin: auto auto;
|
80
|
-
margin-top: 20px;
|
81
|
-
}
|
82
|
-
i.block_image_icon {
|
83
|
-
font-size: 150px;
|
84
|
-
}
|
85
|
-
.buttons {
|
86
|
-
padding-top: 10px;
|
87
|
-
padding-bottom: 10px;
|
88
|
-
}
|
89
|
-
&:hover {
|
90
|
-
transform: translateY(-5px);
|
91
|
-
-webkit-box-shadow: 0px 0px 35px -4px rgba(0,0,0,0.85);
|
92
|
-
-moz-box-shadow: 0px 0px 35px -4px rgba(0,0,0,0.85);
|
93
|
-
box-shadow: 0px 0px 35px -4px rgba(0,0,0,0.85);
|
94
|
-
i.block_image_icon {
|
95
|
-
color: $brand-primary;
|
96
|
-
}
|
97
|
-
}
|
98
|
-
}
|
99
|
-
}
|
100
|
-
|
101
|
-
}
|
102
|
-
}
|
103
|
-
.members_section {
|
104
|
-
&.grayscale {
|
105
|
-
img {
|
106
|
-
filter: grayscale(1);
|
107
|
-
&:hover {
|
108
|
-
filter: grayscale(0);
|
109
|
-
}
|
110
|
-
}
|
111
|
-
}
|
112
|
-
&.zoom {
|
113
|
-
img {
|
114
|
-
&:hover {
|
115
|
-
transform: scale(1.1);
|
116
|
-
}
|
117
|
-
}
|
118
|
-
}
|
119
|
-
img {
|
120
|
-
height: 100px;
|
121
|
-
margin-bottom: 20px;
|
122
|
-
margin-top: 20px;
|
123
|
-
object-fit: contain;
|
124
|
-
padding:10px;
|
125
|
-
margin: auto;
|
126
|
-
transition: all 200ms ease;
|
127
|
-
}
|
128
|
-
}
|
129
|
-
.title {
|
130
|
-
margin-bottom: 20px;
|
131
|
-
}
|
132
|
-
.buttons{
|
133
|
-
padding-top: $flow_row_padding;
|
134
|
-
}
|
135
|
-
|
136
|
-
.owl-carousel.slider-block {
|
137
|
-
.owl-stage-outer {
|
138
|
-
max-height: 500px;
|
139
|
-
margin-bottom: 0px;
|
140
|
-
height: auto;
|
141
|
-
.owl-stage {
|
142
|
-
height: 100%;
|
143
|
-
display: flex;
|
144
|
-
position: relative;
|
145
|
-
.owl-item {
|
146
|
-
.item {
|
147
|
-
height: 100%;
|
148
|
-
flex: 1;
|
149
|
-
picture {
|
150
|
-
height: auto;
|
151
|
-
position: relative;
|
152
|
-
overflow: auto;
|
153
|
-
img {
|
154
|
-
display: block;
|
155
|
-
width: 100%;
|
156
|
-
object-fit: cover;
|
157
|
-
height: 100%;
|
158
|
-
}
|
159
|
-
}
|
160
|
-
}
|
161
|
-
}
|
162
|
-
}
|
163
|
-
}
|
164
|
-
.owl-nav {
|
165
|
-
button {
|
166
|
-
height: 40px;
|
167
|
-
width: 40px;
|
168
|
-
background-color: #3c3b39 !important;
|
169
|
-
color: white;
|
170
|
-
&:first-child:hover {
|
171
|
-
transform: translateX(-1px);
|
172
|
-
}
|
173
|
-
&:hover {
|
174
|
-
transform: translateX(1px);
|
175
|
-
background-color: $brand-primary !important;
|
176
|
-
@extend .drop_shadow;
|
177
|
-
}
|
178
|
-
span {
|
179
|
-
font-weight:bold;
|
180
|
-
font-size: 30px;
|
181
|
-
line-height:26px;
|
182
|
-
}
|
183
|
-
}
|
184
|
-
}
|
185
|
-
}
|
186
|
-
}
|
1
|
+
// Styles for flow sections
|
2
|
+
// Members section
|
3
|
+
#flow_wrapper {
|
4
|
+
.row {
|
5
|
+
padding-top: $flow_row_padding;
|
6
|
+
padding-bottom: $flow_row_padding;
|
7
|
+
background-color: $body-bg;
|
8
|
+
position: relative;
|
9
|
+
&:first-child {
|
10
|
+
@media(max-width: $screen-sm-min){
|
11
|
+
padding-top:0px;
|
12
|
+
}
|
13
|
+
}
|
14
|
+
@media (min-width: $screen-sm-min) {
|
15
|
+
&.equal {
|
16
|
+
display: flex;
|
17
|
+
flex-wrap: wrap;
|
18
|
+
}
|
19
|
+
}
|
20
|
+
&.background_image_row {
|
21
|
+
background-size: cover !important;
|
22
|
+
background-repeat: no-repeat !important;
|
23
|
+
background-position: center center !important;
|
24
|
+
&.fixed {
|
25
|
+
background-attachment: fixed !important;
|
26
|
+
}
|
27
|
+
.title{
|
28
|
+
h1, h2, h3, h4, h5, h6 {
|
29
|
+
color: #fff;
|
30
|
+
}
|
31
|
+
}
|
32
|
+
p {
|
33
|
+
color: white;
|
34
|
+
}
|
35
|
+
}
|
36
|
+
.feature_block {
|
37
|
+
a.btn.btn-primary {
|
38
|
+
margin-top: 5px;
|
39
|
+
}
|
40
|
+
}
|
41
|
+
&.block_row {
|
42
|
+
.block {
|
43
|
+
@media(max-width: $screen-sm-min) {
|
44
|
+
&:not(:first-child) {
|
45
|
+
margin-top: $flow_row_padding;
|
46
|
+
}
|
47
|
+
}
|
48
|
+
.block-inner {
|
49
|
+
height: 100%;
|
50
|
+
display: flex;
|
51
|
+
flex-direction: column;
|
52
|
+
overflow:auto;
|
53
|
+
background-size: cover !important;
|
54
|
+
background-repeat: no-repeat !important;
|
55
|
+
background-position: center center !important;
|
56
|
+
border-radius: 5px;
|
57
|
+
border: 1px solid #ccc;
|
58
|
+
-webkit-box-shadow: 0px 0px 10px -4px rgba(0,0,0,0.75);
|
59
|
+
-moz-box-shadow: 0px 0px 10px -4px rgba(0,0,0,0.75);
|
60
|
+
box-shadow: 0px 0px 10px -4px rgba(0,0,0,0.75);
|
61
|
+
transition: all 200ms ease-in-out;
|
62
|
+
&.background_image_block .title {
|
63
|
+
h1, h2, h3, h4, h5, h6 {
|
64
|
+
color: #fff;
|
65
|
+
}
|
66
|
+
}
|
67
|
+
.title {
|
68
|
+
h1, h2, h3, h4, h5, h6 {
|
69
|
+
color: #3c3b39;
|
70
|
+
}
|
71
|
+
}
|
72
|
+
&.background_image_block p {
|
73
|
+
color: #fff;
|
74
|
+
}
|
75
|
+
p {
|
76
|
+
color: #3c3b39;
|
77
|
+
}
|
78
|
+
.block-inner img {
|
79
|
+
margin: auto auto;
|
80
|
+
margin-top: 20px;
|
81
|
+
}
|
82
|
+
i.block_image_icon {
|
83
|
+
font-size: 150px;
|
84
|
+
}
|
85
|
+
.buttons {
|
86
|
+
padding-top: 10px;
|
87
|
+
padding-bottom: 10px;
|
88
|
+
}
|
89
|
+
&:hover {
|
90
|
+
transform: translateY(-5px);
|
91
|
+
-webkit-box-shadow: 0px 0px 35px -4px rgba(0,0,0,0.85);
|
92
|
+
-moz-box-shadow: 0px 0px 35px -4px rgba(0,0,0,0.85);
|
93
|
+
box-shadow: 0px 0px 35px -4px rgba(0,0,0,0.85);
|
94
|
+
i.block_image_icon {
|
95
|
+
color: $brand-primary;
|
96
|
+
}
|
97
|
+
}
|
98
|
+
}
|
99
|
+
}
|
100
|
+
|
101
|
+
}
|
102
|
+
}
|
103
|
+
.members_section {
|
104
|
+
&.grayscale {
|
105
|
+
img {
|
106
|
+
filter: grayscale(1);
|
107
|
+
&:hover {
|
108
|
+
filter: grayscale(0);
|
109
|
+
}
|
110
|
+
}
|
111
|
+
}
|
112
|
+
&.zoom {
|
113
|
+
img {
|
114
|
+
&:hover {
|
115
|
+
transform: scale(1.1);
|
116
|
+
}
|
117
|
+
}
|
118
|
+
}
|
119
|
+
img {
|
120
|
+
height: 100px;
|
121
|
+
margin-bottom: 20px;
|
122
|
+
margin-top: 20px;
|
123
|
+
object-fit: contain;
|
124
|
+
padding:10px;
|
125
|
+
margin: auto;
|
126
|
+
transition: all 200ms ease;
|
127
|
+
}
|
128
|
+
}
|
129
|
+
.title {
|
130
|
+
margin-bottom: 20px;
|
131
|
+
}
|
132
|
+
.buttons{
|
133
|
+
padding-top: $flow_row_padding;
|
134
|
+
}
|
135
|
+
|
136
|
+
.owl-carousel.slider-block {
|
137
|
+
.owl-stage-outer {
|
138
|
+
max-height: 500px;
|
139
|
+
margin-bottom: 0px;
|
140
|
+
height: auto;
|
141
|
+
.owl-stage {
|
142
|
+
height: 100%;
|
143
|
+
display: flex;
|
144
|
+
position: relative;
|
145
|
+
.owl-item {
|
146
|
+
.item {
|
147
|
+
height: 100%;
|
148
|
+
flex: 1;
|
149
|
+
picture {
|
150
|
+
height: auto;
|
151
|
+
position: relative;
|
152
|
+
overflow: auto;
|
153
|
+
img {
|
154
|
+
display: block;
|
155
|
+
width: 100%;
|
156
|
+
object-fit: cover;
|
157
|
+
height: 100%;
|
158
|
+
}
|
159
|
+
}
|
160
|
+
}
|
161
|
+
}
|
162
|
+
}
|
163
|
+
}
|
164
|
+
.owl-nav {
|
165
|
+
button {
|
166
|
+
height: 40px;
|
167
|
+
width: 40px;
|
168
|
+
background-color: #3c3b39 !important;
|
169
|
+
color: white;
|
170
|
+
&:first-child:hover {
|
171
|
+
transform: translateX(-1px);
|
172
|
+
}
|
173
|
+
&:hover {
|
174
|
+
transform: translateX(1px);
|
175
|
+
background-color: $brand-primary !important;
|
176
|
+
@extend .drop_shadow;
|
177
|
+
}
|
178
|
+
span {
|
179
|
+
font-weight:bold;
|
180
|
+
font-size: 30px;
|
181
|
+
line-height:26px;
|
182
|
+
}
|
183
|
+
}
|
184
|
+
}
|
185
|
+
}
|
186
|
+
}
|
data/_sass/core/footer.scss
CHANGED
@@ -1,142 +1,142 @@
|
|
1
|
-
// Footer List Groups
|
2
|
-
#wrapper {
|
3
|
-
footer {
|
4
|
-
position: relative;
|
5
|
-
a {
|
6
|
-
color: $footer-text-color;
|
7
|
-
font-size: 14px;
|
8
|
-
&:hover {
|
9
|
-
color: $brand-primary;
|
10
|
-
text-decoration: none;
|
11
|
-
transition: color .5s ease;
|
12
|
-
-moz-transition: color .5s ease;
|
13
|
-
-webkit-transition: color .5s ease;
|
14
|
-
}
|
15
|
-
}
|
16
|
-
b {
|
17
|
-
a {
|
18
|
-
color: $brand-primary;
|
19
|
-
}
|
20
|
-
&:hover {
|
21
|
-
color: $brand-primary;
|
22
|
-
}
|
23
|
-
}
|
24
|
-
h3 {
|
25
|
-
font-size:24px;
|
26
|
-
color: $footer-text-color;
|
27
|
-
@media(max-width: $screen-sm-min - 1){
|
28
|
-
text-align: center;
|
29
|
-
}
|
30
|
-
}
|
31
|
-
.footer-main {
|
32
|
-
|
33
|
-
background: $footer-bg-color; /* Old browsers */
|
34
|
-
background: -moz-linear-gradient(-45deg, darken($footer-bg-color, 5%) 0%, $footer-bg-color 23%, lighten($footer-bg-color, 20%) 46%, lighten($footer-bg-color, 30%) 73%, footer-bg-color 100%); /* FF3.6-15 */
|
35
|
-
background: -webkit-linear-gradient(-45deg, darken($footer-bg-color, 5%) 0%, $footer-bg-color 23%,lighten($footer-bg-color, 20%) 46%, lighten($footer-bg-color, 30%) 73%, $footer-bg-color 100%); /* Chrome10-25,Safari5.1-6 */
|
36
|
-
background: linear-gradient(135deg, darken($footer-bg-color, 5%) 0% , $footer-bg-color 23%, lighten($footer-bg-color, 20%) 46%, lighten($footer-bg-color, 30%) 73%, $footer-bg-color 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
37
|
-
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000', endColorstr='$footer-bg-color',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
|
38
|
-
|
39
|
-
ul.list-group {
|
40
|
-
margin-left:0px;
|
41
|
-
li {
|
42
|
-
background-color:transparent;
|
43
|
-
border:0;
|
44
|
-
padding-left:0px;
|
45
|
-
padding-right:0px;
|
46
|
-
transition: all 400ms ease;
|
47
|
-
&:hover {
|
48
|
-
padding-left: 4px;
|
49
|
-
a {
|
50
|
-
color:darken($brand-primary, 10%);
|
51
|
-
}
|
52
|
-
}
|
53
|
-
small.date {
|
54
|
-
display: block;
|
55
|
-
}
|
56
|
-
}
|
57
|
-
@media(max-width: $screen-sm-min - 1){
|
58
|
-
text-align: center;
|
59
|
-
}
|
60
|
-
}
|
61
|
-
// Address and contact details
|
62
|
-
.contact-details {
|
63
|
-
margin-top: 20px;
|
64
|
-
address {
|
65
|
-
font-size: 14px;
|
66
|
-
color: $footer-text-color;
|
67
|
-
a.email {
|
68
|
-
text-align: left;
|
69
|
-
font-size: 24px;
|
70
|
-
display:inline-block;
|
71
|
-
background-color: transparent;
|
72
|
-
border: 0px;
|
73
|
-
margin-top:5px;
|
74
|
-
color: $footer-text-color;
|
75
|
-
width:100%;
|
76
|
-
&:hover{
|
77
|
-
color:$brand-primary;
|
78
|
-
}
|
79
|
-
&:visited, &:hover, &:active, &:link {
|
80
|
-
text-decoration: none !important;
|
81
|
-
color: $footer-text-color;
|
82
|
-
}
|
83
|
-
@media(max-width: $screen-sm-min - 1){
|
84
|
-
text-align: center;
|
85
|
-
}
|
86
|
-
}
|
87
|
-
}
|
88
|
-
@media(max-width: $screen-sm-min - 1){
|
89
|
-
text-align: center;
|
90
|
-
}
|
91
|
-
}
|
92
|
-
.footer-follow-section {
|
93
|
-
padding-bottom: 40px;
|
94
|
-
text-align: center;
|
95
|
-
padding-left: 30px;
|
96
|
-
padding-right: 30px;
|
97
|
-
a.btn.btn-social-icon {
|
98
|
-
margin-right: 10px;
|
99
|
-
padding-right: 0;
|
100
|
-
margin-top: 5px;
|
101
|
-
background-color: $footer-bg-color;
|
102
|
-
border-radius: 50%;
|
103
|
-
transition: all 300ms ease;
|
104
|
-
i {
|
105
|
-
width: 60px;
|
106
|
-
height: 60px;
|
107
|
-
left: -8px;
|
108
|
-
position: relative;
|
109
|
-
padding-top: 15px;
|
110
|
-
padding-left: 5px;
|
111
|
-
border-radius: 50%;
|
112
|
-
text-align: center;
|
113
|
-
font-size:24px;
|
114
|
-
margin-top:25px;
|
115
|
-
margin-right: 5px;
|
116
|
-
transition: all 1s linear;
|
117
|
-
color: $footer-text-color;
|
118
|
-
}
|
119
|
-
&:hover {
|
120
|
-
background-color: lighten($footer-bg-color, 30%);
|
121
|
-
color: $brand-primary;
|
122
|
-
}
|
123
|
-
}
|
124
|
-
h3 {
|
125
|
-
font-size: 24px;
|
126
|
-
color: $footer-text-color;
|
127
|
-
}
|
128
|
-
}
|
129
|
-
}
|
130
|
-
.footer-bottom {
|
131
|
-
background-color: #1c1c1c;
|
132
|
-
color: #FFF;
|
133
|
-
span.coloured-bp{
|
134
|
-
color: $brand-primary;
|
135
|
-
}
|
136
|
-
img.footer-logo {
|
137
|
-
height: 40px;
|
138
|
-
display: inline-block;
|
139
|
-
}
|
140
|
-
}
|
141
|
-
}
|
1
|
+
// Footer List Groups
|
2
|
+
#wrapper {
|
3
|
+
footer {
|
4
|
+
position: relative;
|
5
|
+
a {
|
6
|
+
color: $footer-text-color;
|
7
|
+
font-size: 14px;
|
8
|
+
&:hover {
|
9
|
+
color: $brand-primary;
|
10
|
+
text-decoration: none;
|
11
|
+
transition: color .5s ease;
|
12
|
+
-moz-transition: color .5s ease;
|
13
|
+
-webkit-transition: color .5s ease;
|
14
|
+
}
|
15
|
+
}
|
16
|
+
b {
|
17
|
+
a {
|
18
|
+
color: $brand-primary;
|
19
|
+
}
|
20
|
+
&:hover {
|
21
|
+
color: $brand-primary;
|
22
|
+
}
|
23
|
+
}
|
24
|
+
h3 {
|
25
|
+
font-size:24px;
|
26
|
+
color: $footer-text-color;
|
27
|
+
@media(max-width: $screen-sm-min - 1){
|
28
|
+
text-align: center;
|
29
|
+
}
|
30
|
+
}
|
31
|
+
.footer-main {
|
32
|
+
|
33
|
+
background: $footer-bg-color; /* Old browsers */
|
34
|
+
background: -moz-linear-gradient(-45deg, darken($footer-bg-color, 5%) 0%, $footer-bg-color 23%, lighten($footer-bg-color, 20%) 46%, lighten($footer-bg-color, 30%) 73%, footer-bg-color 100%); /* FF3.6-15 */
|
35
|
+
background: -webkit-linear-gradient(-45deg, darken($footer-bg-color, 5%) 0%, $footer-bg-color 23%,lighten($footer-bg-color, 20%) 46%, lighten($footer-bg-color, 30%) 73%, $footer-bg-color 100%); /* Chrome10-25,Safari5.1-6 */
|
36
|
+
background: linear-gradient(135deg, darken($footer-bg-color, 5%) 0% , $footer-bg-color 23%, lighten($footer-bg-color, 20%) 46%, lighten($footer-bg-color, 30%) 73%, $footer-bg-color 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
37
|
+
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000', endColorstr='$footer-bg-color',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
|
38
|
+
|
39
|
+
ul.list-group {
|
40
|
+
margin-left:0px;
|
41
|
+
li {
|
42
|
+
background-color:transparent;
|
43
|
+
border:0;
|
44
|
+
padding-left:0px;
|
45
|
+
padding-right:0px;
|
46
|
+
transition: all 400ms ease;
|
47
|
+
&:hover {
|
48
|
+
padding-left: 4px;
|
49
|
+
a {
|
50
|
+
color:darken($brand-primary, 10%);
|
51
|
+
}
|
52
|
+
}
|
53
|
+
small.date {
|
54
|
+
display: block;
|
55
|
+
}
|
56
|
+
}
|
57
|
+
@media(max-width: $screen-sm-min - 1){
|
58
|
+
text-align: center;
|
59
|
+
}
|
60
|
+
}
|
61
|
+
// Address and contact details
|
62
|
+
.contact-details {
|
63
|
+
margin-top: 20px;
|
64
|
+
address {
|
65
|
+
font-size: 14px;
|
66
|
+
color: $footer-text-color;
|
67
|
+
a.email {
|
68
|
+
text-align: left;
|
69
|
+
font-size: 24px;
|
70
|
+
display:inline-block;
|
71
|
+
background-color: transparent;
|
72
|
+
border: 0px;
|
73
|
+
margin-top:5px;
|
74
|
+
color: $footer-text-color;
|
75
|
+
width:100%;
|
76
|
+
&:hover{
|
77
|
+
color:$brand-primary;
|
78
|
+
}
|
79
|
+
&:visited, &:hover, &:active, &:link {
|
80
|
+
text-decoration: none !important;
|
81
|
+
color: $footer-text-color;
|
82
|
+
}
|
83
|
+
@media(max-width: $screen-sm-min - 1){
|
84
|
+
text-align: center;
|
85
|
+
}
|
86
|
+
}
|
87
|
+
}
|
88
|
+
@media(max-width: $screen-sm-min - 1){
|
89
|
+
text-align: center;
|
90
|
+
}
|
91
|
+
}
|
92
|
+
.footer-follow-section {
|
93
|
+
padding-bottom: 40px;
|
94
|
+
text-align: center;
|
95
|
+
padding-left: 30px;
|
96
|
+
padding-right: 30px;
|
97
|
+
a.btn.btn-social-icon {
|
98
|
+
margin-right: 10px;
|
99
|
+
padding-right: 0;
|
100
|
+
margin-top: 5px;
|
101
|
+
background-color: $footer-bg-color;
|
102
|
+
border-radius: 50%;
|
103
|
+
transition: all 300ms ease;
|
104
|
+
i {
|
105
|
+
width: 60px;
|
106
|
+
height: 60px;
|
107
|
+
left: -8px;
|
108
|
+
position: relative;
|
109
|
+
padding-top: 15px;
|
110
|
+
padding-left: 5px;
|
111
|
+
border-radius: 50%;
|
112
|
+
text-align: center;
|
113
|
+
font-size:24px;
|
114
|
+
margin-top:25px;
|
115
|
+
margin-right: 5px;
|
116
|
+
transition: all 1s linear;
|
117
|
+
color: $footer-text-color;
|
118
|
+
}
|
119
|
+
&:hover {
|
120
|
+
background-color: lighten($footer-bg-color, 30%);
|
121
|
+
color: $brand-primary;
|
122
|
+
}
|
123
|
+
}
|
124
|
+
h3 {
|
125
|
+
font-size: 24px;
|
126
|
+
color: $footer-text-color;
|
127
|
+
}
|
128
|
+
}
|
129
|
+
}
|
130
|
+
.footer-bottom {
|
131
|
+
background-color: #1c1c1c;
|
132
|
+
color: #FFF;
|
133
|
+
span.coloured-bp{
|
134
|
+
color: $brand-primary;
|
135
|
+
}
|
136
|
+
img.footer-logo {
|
137
|
+
height: 40px;
|
138
|
+
display: inline-block;
|
139
|
+
}
|
140
|
+
}
|
141
|
+
}
|
142
142
|
}
|