kcc-gem-theme 0.4.7 → 0.5.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/README.md +93 -5
- data/_includes/footer.html +121 -8
- data/_includes/nav-global.html +113 -4
- data/_includes/nav-local.html +2 -2
- data/assets/css/kcc-theme.css +1 -1
- data/assets/css/main.css +1 -1
- data/assets/img/heading-bg-underline-tan.png +0 -0
- data/assets/img/heading-bg-underline.png +0 -0
- data/assets/scss/0-tools/_vars.scss +21 -17
- data/assets/scss/1-base/_links.scss +2 -2
- data/assets/scss/1-base/_typography.scss +115 -283
- data/assets/scss/2-modules/_error.scss +2 -2
- data/assets/scss/2-modules/_latest-news-widget.scss +3 -3
- data/assets/scss/2-modules/{_global-nav.scss → _nav-global.scss} +47 -60
- data/assets/scss/3-layout/_margins.scss +14 -0
- data/assets/scss/3-layout/_padding.scss +2 -0
- data/assets/scss/3-layout/_tables.scss +8 -0
- data/assets/scss/4-pages/index/_home.scss +12 -0
- data/assets/scss/kcc-theme.scss +4 -2
- metadata +8 -4
- data/assets/scss/3-layout/_posts.scss +0 -3
@@ -1,10 +1,10 @@
|
|
1
1
|
|
2
2
|
.error__main-heading {
|
3
3
|
color: $primary-red;
|
4
|
-
font-weight: $
|
4
|
+
font-weight: $font-weight-bold;
|
5
5
|
}
|
6
6
|
|
7
7
|
.error__sub-heading {
|
8
8
|
color: $primary-blue;
|
9
|
-
font-weight: $
|
9
|
+
font-weight: $font-weight-bold;
|
10
10
|
}
|
@@ -14,8 +14,8 @@
|
|
14
14
|
|
15
15
|
.latest-news-widget__latest__h {
|
16
16
|
font-size: 41px;
|
17
|
-
font-weight: $
|
18
|
-
font-family: $
|
17
|
+
font-weight: $font-weight-bolder;
|
18
|
+
font-family: $font-family-paragraph;
|
19
19
|
margin: 0 0 18px;
|
20
20
|
line-height: 1;
|
21
21
|
padding: 15px 0;
|
@@ -719,7 +719,7 @@
|
|
719
719
|
color: #fff;
|
720
720
|
text-decoration: none;
|
721
721
|
margin-bottom: 0;
|
722
|
-
font-family:
|
722
|
+
font-family: $font-family-oswald;
|
723
723
|
font-size: 32px;
|
724
724
|
font-weight: 500;
|
725
725
|
letter-spacing: .1rem;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
.global
|
1
|
+
.nav-global {
|
2
2
|
background-color: $primary-red;
|
3
3
|
height: 56px;
|
4
4
|
margin-left: 0;
|
@@ -7,73 +7,60 @@
|
|
7
7
|
min-width: 100%;
|
8
8
|
padding-bottom: 10px;
|
9
9
|
padding-left: 5%;
|
10
|
-
padding-top:
|
10
|
+
padding-top: 10px;
|
11
11
|
width: 100%;
|
12
12
|
z-index: 1031;
|
13
13
|
}
|
14
14
|
|
15
|
-
.
|
15
|
+
.nav-global__kcc-logo {
|
16
16
|
margin-left: 5px;
|
17
17
|
width: 190px;
|
18
18
|
}
|
19
19
|
|
20
20
|
@media screen and (min-width: 360px) {
|
21
|
-
.
|
21
|
+
.nav-global__kcc-logo {
|
22
22
|
width: 225px;
|
23
23
|
}
|
24
24
|
}
|
25
25
|
|
26
26
|
@media screen and (min-width: 410px) {
|
27
|
-
.
|
27
|
+
.nav-global__kcc-logo {
|
28
28
|
width: 255px;
|
29
29
|
}
|
30
30
|
}
|
31
31
|
|
32
32
|
@media screen and (min-width: 488px) {
|
33
|
-
.
|
33
|
+
.nav-global__kcc-logo {
|
34
34
|
width: 260px;
|
35
35
|
}
|
36
36
|
}
|
37
37
|
|
38
38
|
@media screen and (min-width: 576px) {
|
39
|
-
.
|
39
|
+
.nav-global__kcc-logo {
|
40
40
|
width: 300px;
|
41
41
|
}
|
42
42
|
}
|
43
43
|
|
44
44
|
@media screen and (min-width: 768px) {
|
45
|
-
.
|
45
|
+
.nav-global__kcc-logo {
|
46
46
|
width: 320px;
|
47
47
|
}
|
48
48
|
}
|
49
49
|
|
50
50
|
@media screen and (min-width: 992px) and (max-width: 1100px) {
|
51
|
-
.
|
51
|
+
.nav-global__kcc-logo {
|
52
52
|
margin-left: -25px;
|
53
53
|
width: 310px;
|
54
54
|
}
|
55
55
|
}
|
56
56
|
|
57
57
|
@media screen and (min-width: 1100px) {
|
58
|
-
.
|
58
|
+
.nav-global__kcc-logo {
|
59
59
|
margin-left: -25px;
|
60
60
|
width: 340px;
|
61
61
|
}
|
62
62
|
}
|
63
63
|
|
64
|
-
.form-inline {
|
65
|
-
float: right;
|
66
|
-
}
|
67
|
-
|
68
|
-
.local-search {
|
69
|
-
border-radius: 1.5em;
|
70
|
-
}
|
71
|
-
|
72
|
-
.search {
|
73
|
-
font-size: 1.2em;
|
74
|
-
margin-right: 40%;
|
75
|
-
}
|
76
|
-
|
77
64
|
.clearSearch {
|
78
65
|
background-position: center 72px;
|
79
66
|
padding-top: 72px;
|
@@ -84,12 +71,12 @@
|
|
84
71
|
height: 46px;
|
85
72
|
}
|
86
73
|
|
87
|
-
.
|
74
|
+
.nav-global__gcse-wrapper {
|
88
75
|
margin-left: -5px;
|
89
76
|
}
|
90
77
|
|
91
78
|
@media screen and (min-width: 992px) {
|
92
|
-
.
|
79
|
+
.nav-global__gcse-wrapper {
|
93
80
|
display: block;
|
94
81
|
float: right;
|
95
82
|
margin-top: -18px;
|
@@ -97,7 +84,7 @@
|
|
97
84
|
}
|
98
85
|
}
|
99
86
|
|
100
|
-
.
|
87
|
+
.nav-global__search-icon {
|
101
88
|
background-position: center;
|
102
89
|
background-size: 20px 20px;
|
103
90
|
background-repeat: no-repeat;
|
@@ -108,19 +95,19 @@
|
|
108
95
|
}
|
109
96
|
|
110
97
|
@media screen and (min-width: 360px) {
|
111
|
-
.
|
98
|
+
.nav-global__search-icon {
|
112
99
|
background-size: 21px 21px;
|
113
100
|
}
|
114
101
|
}
|
115
102
|
|
116
103
|
@media screen and (min-width: 410px) {
|
117
|
-
.
|
104
|
+
.nav-global__search-icon {
|
118
105
|
background-size: 22px 22px;
|
119
106
|
}
|
120
107
|
}
|
121
108
|
|
122
109
|
@media screen and (min-width: 576px) {
|
123
|
-
.
|
110
|
+
.nav-global__search-icon {
|
124
111
|
background-size: 24px 24px;
|
125
112
|
height: 24px;
|
126
113
|
width: 24px;
|
@@ -128,30 +115,30 @@
|
|
128
115
|
}
|
129
116
|
|
130
117
|
@media screen and (min-width: 768px) {
|
131
|
-
.
|
118
|
+
.nav-global__search-icon {
|
132
119
|
background-size: 25px 25px;
|
133
120
|
height: 26px;
|
134
121
|
width: 26px;
|
135
122
|
}
|
136
123
|
}
|
137
124
|
|
138
|
-
.global
|
125
|
+
.nav-global .nav-global__search-toggle .nav-global__search-icon {
|
139
126
|
float: right;
|
140
127
|
}
|
141
128
|
|
142
|
-
.
|
129
|
+
.nav-global__search-collapse {
|
143
130
|
display: none;
|
144
131
|
margin-top: -110px;
|
145
132
|
}
|
146
133
|
|
147
134
|
@media screen and (min-width: 576px) {
|
148
|
-
.
|
135
|
+
.nav-global__search-collapse {
|
149
136
|
margin-top: -115px;
|
150
137
|
}
|
151
138
|
}
|
152
139
|
|
153
140
|
@media screen and (min-width: 992px) {
|
154
|
-
.
|
141
|
+
.nav-global__search-collapse {
|
155
142
|
display: block;
|
156
143
|
margin-left: 0;
|
157
144
|
margin-right: 0;
|
@@ -159,22 +146,22 @@
|
|
159
146
|
}
|
160
147
|
}
|
161
148
|
|
162
|
-
.
|
149
|
+
.nav-global__search-collapse--visible {
|
163
150
|
display: block;
|
164
151
|
width: 100%;
|
165
152
|
}
|
166
153
|
|
167
|
-
.global
|
154
|
+
.nav-global--search-toggle {
|
168
155
|
top: 30px;
|
169
156
|
}
|
170
157
|
|
171
|
-
.
|
158
|
+
.nav-global__search--conatiner {
|
172
159
|
max-width: 1100px;
|
173
160
|
margin-left: auto;
|
174
161
|
margin-right: auto;
|
175
162
|
}
|
176
163
|
|
177
|
-
.
|
164
|
+
.nav-global__search--open-background {
|
178
165
|
width: 120%;
|
179
166
|
background-color: #c61f48;
|
180
167
|
height: 65px;
|
@@ -184,114 +171,114 @@
|
|
184
171
|
left: -40px;
|
185
172
|
}
|
186
173
|
|
187
|
-
.
|
174
|
+
.nav-global__navbar-brand {
|
188
175
|
margin-left: -10px;
|
189
176
|
}
|
190
177
|
|
191
178
|
@media screen and (min-width: 410px) {
|
192
|
-
.
|
179
|
+
.nav-global__navbar-brand {
|
193
180
|
margin-left: -15px;
|
194
181
|
}
|
195
182
|
}
|
196
183
|
|
197
184
|
@media screen and (min-width: 488px) {
|
198
|
-
.
|
185
|
+
.nav-global__navbar-brand {
|
199
186
|
margin-left: -20px;
|
200
187
|
}
|
201
188
|
}
|
202
189
|
|
203
190
|
@media screen and (min-width: 576px) {
|
204
|
-
.
|
191
|
+
.nav-global__navbar-brand {
|
205
192
|
margin-left: -25px;
|
206
193
|
}
|
207
194
|
}
|
208
195
|
|
209
196
|
@media screen and (min-width: 768px) {
|
210
|
-
.
|
197
|
+
.nav-global__navbar-brand {
|
211
198
|
margin-left: -35px;
|
212
199
|
}
|
213
200
|
}
|
214
201
|
|
215
202
|
@media screen and (min-width: 992px) {
|
216
|
-
.
|
203
|
+
.nav-global__navbar-brand {
|
217
204
|
margin-left: -20px;
|
218
205
|
}
|
219
206
|
}
|
220
207
|
|
221
208
|
@media screen and (min-width: 1000px) {
|
222
|
-
.
|
209
|
+
.nav-global__navbar-brand {
|
223
210
|
margin-left: -18px;
|
224
211
|
}
|
225
212
|
}
|
226
213
|
|
227
214
|
@media screen and (min-width: 1080px) {
|
228
|
-
.
|
215
|
+
.nav-global__navbar-brand {
|
229
216
|
margin-left: -22px;
|
230
217
|
}
|
231
218
|
}
|
232
219
|
|
233
220
|
@media screen and (min-width: 1200px) {
|
234
|
-
.
|
221
|
+
.nav-global__navbar-brand {
|
235
222
|
margin-left: -2.5%;
|
236
223
|
}
|
237
224
|
}
|
238
225
|
|
239
226
|
@media screen and (min-width: 1600px) {
|
240
|
-
.
|
227
|
+
.nav-global__navbar-brand {
|
241
228
|
margin-left: -3%;
|
242
229
|
}
|
243
230
|
}
|
244
231
|
|
245
232
|
@media screen and (min-width: 1900px) {
|
246
|
-
.
|
233
|
+
.nav-global__navbar-brand {
|
247
234
|
margin-left: -3.25%;
|
248
235
|
}
|
249
236
|
}
|
250
237
|
|
251
238
|
@media screen and (min-width: 2000px) {
|
252
|
-
.
|
239
|
+
.nav-global__navbar-brand {
|
253
240
|
margin-left: -3.5%;
|
254
241
|
}
|
255
242
|
}
|
256
243
|
|
257
|
-
.
|
244
|
+
.nav-global__kcc-logo-inverse {
|
258
245
|
margin-left: -3px;
|
259
246
|
width: 50px;
|
260
247
|
margin-right: -10px;
|
261
248
|
}
|
262
249
|
|
263
250
|
@media screen and (min-width: 360px) {
|
264
|
-
.
|
251
|
+
.nav-global__kcc-logo-inverse {
|
265
252
|
width: 60px;
|
266
253
|
}
|
267
254
|
}
|
268
255
|
|
269
256
|
@media screen and (min-width: 410px) {
|
270
|
-
.
|
257
|
+
.nav-global__kcc-logo-inverse {
|
271
258
|
width: 68px;
|
272
259
|
}
|
273
260
|
}
|
274
261
|
|
275
262
|
@media screen and (min-width: 488px) {
|
276
|
-
.
|
263
|
+
.nav-global__kcc-logo-inverse {
|
277
264
|
width: 68px;
|
278
265
|
}
|
279
266
|
}
|
280
267
|
|
281
268
|
@media screen and (min-width: 576px) {
|
282
|
-
.
|
269
|
+
.nav-global__kcc-logo-inverse {
|
283
270
|
width: 73px;
|
284
271
|
}
|
285
272
|
}
|
286
273
|
|
287
274
|
@media screen and (min-width: 768px) {
|
288
|
-
.
|
275
|
+
.nav-global__kcc-logo-inverse {
|
289
276
|
width: 80px;
|
290
277
|
}
|
291
278
|
}
|
292
279
|
|
293
280
|
@media screen and (min-width: 992px) {
|
294
|
-
.
|
281
|
+
.nav-global__kcc-logo-inverse {
|
295
282
|
width: 80px;
|
296
283
|
margin-left: -30px;
|
297
284
|
margin-right: 20px;
|
@@ -299,21 +286,21 @@
|
|
299
286
|
}
|
300
287
|
|
301
288
|
@media screen and (min-width: 1100px) {
|
302
|
-
.
|
289
|
+
.nav-global__kcc-logo-inverse {
|
303
290
|
width: 85px;
|
304
291
|
margin-right: 15px;
|
305
292
|
}
|
306
293
|
}
|
307
294
|
|
308
295
|
@media screen and (min-width: 1300px) {
|
309
|
-
.
|
296
|
+
.nav-global__kcc-logo-inverse {
|
310
297
|
width: 85px;
|
311
298
|
margin-left: -35px;
|
312
299
|
}
|
313
300
|
}
|
314
301
|
|
315
302
|
@media screen and (min-width: 1400px) {
|
316
|
-
.
|
303
|
+
.nav-global__kcc-logo-inverse {
|
317
304
|
width: 85px;
|
318
305
|
margin-left: -40px;
|
319
306
|
}
|
@@ -1,2 +1,14 @@
|
|
1
1
|
// Homepage specific Styles
|
2
2
|
// ==========================================
|
3
|
+
|
4
|
+
.home__col--heading-underline {
|
5
|
+
background-image: url(/assets/img/heading-bg-underline.png);
|
6
|
+
background-repeat: no-repeat;
|
7
|
+
background-position: 0 50px;
|
8
|
+
}
|
9
|
+
|
10
|
+
.home__col--heading-underline-tan {
|
11
|
+
background-image: url(/assets/img/heading-bg-underline-tan.png);
|
12
|
+
background-repeat: no-repeat;
|
13
|
+
background-position: 0 50px;
|
14
|
+
}
|
data/assets/scss/kcc-theme.scss
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
@import '2-modules/timeline';
|
19
19
|
@import '2-modules/social-icons';
|
20
20
|
@import '2-modules/footer';
|
21
|
-
@import '2-modules/global
|
21
|
+
@import '2-modules/nav-global';
|
22
22
|
@import '2-modules/playlist';
|
23
23
|
@import '2-modules/archive';
|
24
24
|
@import '2-modules/bios';
|
@@ -27,7 +27,9 @@
|
|
27
27
|
// Layout items
|
28
28
|
// @import "3-layout/...";
|
29
29
|
@import '3-layout/positioning';
|
30
|
-
@import '3-layout/
|
30
|
+
@import '3-layout/margins';
|
31
|
+
@import '3-layout/padding';
|
32
|
+
@import '3-layout/tables';
|
31
33
|
|
32
34
|
// Page specific styling
|
33
35
|
// @import "4-pages/...";
|