jekyll-theme-blp 1.1.2 → 1.2
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/_sass/_base.scss +35 -0
- data/_sass/_layout.scss +39 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a48eeb0211525c6383f938c4af35c80f1a02a5c768a1c9e3b5789ad322f6b84f
|
|
4
|
+
data.tar.gz: 953dc0a8b859891082b4ab78266b09cd4366a7ee3514051986bd7030f2ad679b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: da097f55b4f9808747f833c71f688411b0de7b325e79d628b2380d697a42660d1a4281f53d76d5d4a99c0f0071368fd3ca7476195ff43675352e2f1cb5907bd1
|
|
7
|
+
data.tar.gz: e652e057339cbcafbfb00f2b3603e5bafc23512f5908d4db10f1c9a6224b308014db3ae73b111fa773e7f67deda717cf4df7edf0c8f915b40da02bbfb379f6cf
|
data/_sass/_base.scss
CHANGED
|
@@ -76,6 +76,41 @@ ol {
|
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
+
// Headings
|
|
80
|
+
h2 {
|
|
81
|
+
text-align: center;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
// Tables
|
|
85
|
+
|
|
86
|
+
table {
|
|
87
|
+
width: 100%;
|
|
88
|
+
@include relative-font-size(0.875);
|
|
89
|
+
overflow-x: auto;
|
|
90
|
+
|
|
91
|
+
@include media-query($on-palm) {
|
|
92
|
+
display: block;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
th,
|
|
96
|
+
td {
|
|
97
|
+
text-align: right;
|
|
98
|
+
padding: $spacing-unit / 4;
|
|
99
|
+
|
|
100
|
+
&:first-child {
|
|
101
|
+
text-align: left;
|
|
102
|
+
|
|
103
|
+
@include media-query($on-palm) {
|
|
104
|
+
min-width: 180px;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
th {
|
|
110
|
+
border-bottom: 1px solid $color-details;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
79
114
|
// Links
|
|
80
115
|
a {
|
|
81
116
|
color: $color-accent;
|
data/_sass/_layout.scss
CHANGED
|
@@ -225,6 +225,45 @@
|
|
|
225
225
|
}
|
|
226
226
|
}
|
|
227
227
|
|
|
228
|
+
.partners-list {
|
|
229
|
+
list-style: none;
|
|
230
|
+
margin-left: 0;
|
|
231
|
+
display: flex;
|
|
232
|
+
flex-flow: row wrap;
|
|
233
|
+
justify-content: center;
|
|
234
|
+
align-items: center;
|
|
235
|
+
|
|
236
|
+
li {
|
|
237
|
+
padding: $spacing-unit / 2;
|
|
238
|
+
|
|
239
|
+
img {
|
|
240
|
+
max-width: 150px;
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.info-links {
|
|
246
|
+
list-style: none;
|
|
247
|
+
display: flex;
|
|
248
|
+
flex-flow: row wrap;
|
|
249
|
+
justify-content: space-evenly;
|
|
250
|
+
align-items: center;
|
|
251
|
+
margin-left: 0;
|
|
252
|
+
font-weight: 700;
|
|
253
|
+
|
|
254
|
+
li {
|
|
255
|
+
padding: $spacing-unit / 4;
|
|
256
|
+
|
|
257
|
+
a {
|
|
258
|
+
display: inline-block;
|
|
259
|
+
padding: $spacing-unit / 4 $spacing-unit / 2;
|
|
260
|
+
border-radius: 6px;
|
|
261
|
+
background: $color-details;
|
|
262
|
+
border: 2px solid $color-details;
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
|
|
228
267
|
/*
|
|
229
268
|
Site Footer
|
|
230
269
|
*/
|