jekyll-theme-easy-wedding 0.1.21 → 0.1.22

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e3846ac576c275111b1155d5734874febf4a68fe083d04208e871cf5ca90d722
4
- data.tar.gz: 395cd46ad841cda68846a136f523bdc73d5c5abc610a89c24d67e83564035c72
3
+ metadata.gz: e528e2b17bf7d135f76bfb5ad60f9e7af920a1c821d9e3065741b7b100bb9c00
4
+ data.tar.gz: c1d5943e355a2f870238db8b14f1502fadca721a47590accf79830e17d9e4eb6
5
5
  SHA512:
6
- metadata.gz: 8e764828f3b973e995d86baf3b1d790a0a4095a5396358b1fd3dfe26af6c11ccd9fea9e30dafd04949a3e39702d0f9b40c8ce8d28739dad46eaa0d7e5e95d3c9
7
- data.tar.gz: dde7f03764763080ce136a98b9956e8f19b4103fa617807ccb7dd68f16c2abbaf85c9e1ea06a5bd2d841bf21f50c173b6267616e7d03f484cabaa16c666d520d
6
+ metadata.gz: 5ff1e3f02b4f85f5aae767eb2f6d5ad717a9318b5887b8715bf7b3f50da7abbcc50c40d3cd9057c25104fc1c03228845d017df6fd1313c513f4baacd454237ff
7
+ data.tar.gz: 4350aec67292b38a6f8c33e8669871d3835e5c268ebd8cda7cd8f6c5bb66905cf9d9622708113f87420be2a8dd1387ee34f36590631f083b1c28733265e61220
@@ -5,7 +5,14 @@
5
5
  <div class="people-grid">
6
6
  {% for family in site.data.people.families %}
7
7
  <div class="protrait polaroid">
8
- <img src="{{site.baseurl}}/assets/img/people/{{ family.pic }}" class="img-thumbnail img-responsive" alt="{{ family.name }}" title="{{ family.name }}">
8
+ <img src="{{site.baseurl}}/assets/img/people/{{ family.pic }}"
9
+ class="img-thumbnail img-responsive"
10
+ alt="{{ family.name }}"
11
+ title="{{ family.name }}"
12
+ {% if family.position %}
13
+ style="object-position: {{ family.position }}"
14
+ {% endif %}
15
+ >
9
16
  <div class="caption">
10
17
  <h4>{{ family.name }}</h4>
11
18
  <p>{{ family.people }}</p>
@@ -25,7 +32,14 @@
25
32
  <div class="people-grid">
26
33
  {% for kid in site.data.people.kids %}
27
34
  <div class="portrait polaroid">
28
- <img src="{{site.baseurl}}/assets/img/people/{{ kid.pic }}" class="img-thumbnail img-responsive" alt="{{ kid.name }}" title="{{ kid.name }}">
35
+ <img src="{{site.baseurl}}/assets/img/people/{{ kid.pic }}"
36
+ class="img-thumbnail img-responsive"
37
+ alt="{{ kid.name }}"
38
+ title="{{ kid.name }}"
39
+ {% if her.position %}
40
+ style="object-position: {{ kid.position }}"
41
+ {% endif %}
42
+ >
29
43
  <div class="caption">
30
44
  <h5>{{ kid.name }}</h5>
31
45
  <small>{{ kid.role }}</small>
@@ -47,7 +61,11 @@
47
61
 
48
62
  <div class="portrait polaroid">
49
63
  <img class="img-thumbnail img-responsive" src="{{site.baseurl}}/assets/img/people/{{ her.pic }}" alt="{{ her.name }}"
50
- title="{{ her.name }}">
64
+ title="{{ her.name }}"
65
+ {% if her.position %}
66
+ style="object-position: {{ her.position }}"
67
+ {% endif %}
68
+ >
51
69
  <div class="caption">
52
70
  <h5>{{ her.name }}</h5>
53
71
  <small>{{ her.role }}</small>
@@ -56,7 +74,11 @@
56
74
 
57
75
  <div class="portrait polaroid">
58
76
  <img class="img-thumbnail img-responsive" src="{{site.baseurl}}/assets/img/people/{{ his.pic }}" alt="{{ his.name }}"
59
- title="{{ his.name }}">
77
+ title="{{ his.name }}"
78
+ {% if his.position %}
79
+ style="object-position: {{ his.position }}"
80
+ {% endif %}
81
+ >
60
82
  <div class="caption">
61
83
  <h5>{{ his.name }}</h5>
62
84
  <small>{{ his.role }}</small>
@@ -13,6 +13,7 @@
13
13
 
14
14
  // Theme Variables
15
15
  $text-color: {{site.data.settings.theme.text_color | default: "#404040"}};
16
+ $text-color-lighter: scale-color({{site.data.settings.theme.text_color | default: "#404040"}}, $lightness: 70%);
16
17
 
17
18
  $primary-color: {{site.data.settings.theme.primary_color | default: "#fff"}};
18
19
  $primary-text-color: text-clr($primary-color);
@@ -33,6 +34,7 @@ $accent-color-darker: scale-color({{site.data.settings.theme.accent_color | defa
33
34
  $accent-color-darkest: scale-color({{site.data.settings.theme.accent_color | default: "#fff"}}, $lightness: -30%);
34
35
 
35
36
  $background-color: {{site.data.settings.theme.background_color | default: "#fff"}};
37
+ $background-color-lighter: scale-color({{site.data.settings.theme.background_color | default: "#fff"}}, $lightness: 50%);
36
38
 
37
39
  :root {
38
40
  --intro-background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 0%,
@@ -49,6 +51,7 @@ $background-color: {{site.data.settings.theme.background_color | default: "#fff"
49
51
  }
50
52
 
51
53
  --text-color: #{$text-color};
54
+ --text-color-lighter: #{$text-color-lighter};
52
55
 
53
56
  --primary-color: #{$primary-color};
54
57
  --primary-color-darker: #{$primary-color-darker};
@@ -69,4 +72,5 @@ $background-color: {{site.data.settings.theme.background_color | default: "#fff"
69
72
  --accent-color-darkest: #{$accent-color-darkest};
70
73
 
71
74
  --background-color: #{$background-color};
75
+ --background-color-lighter: #{$background-color-lighter};
72
76
  }