resume-stylist 0.2.2 → 0.2.3
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/data/resume-stylist/templates/theme.html.liquid +5 -4
- data/lib/resume-stylist/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 85ce4778e6d410480c67ab0e43b5a222fdfdb3aa
|
|
4
|
+
data.tar.gz: ead93bb6243fd28225bec0547f5b2c59689bb63a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1e74a4ed06ce4ddac61ef92bc6ebce8269a24d3e71e2d18563ac25579c2ccca9831b0eff7f72356b0359444e6fbcf3ff44797593dbce1f9a8c0ef5f792c7fa06
|
|
7
|
+
data.tar.gz: 60df021ab51be06752040206b09aa8f99d366624b9de8b208a98dcfdc0d06348e421c9abeec924f175371735f1c012ff39d16ef5662d05cbfc2abcc37e95222f
|
|
@@ -36,12 +36,12 @@ theme:
|
|
|
36
36
|
|
|
37
37
|
#basics {
|
|
38
38
|
|
|
39
|
-
.picture-
|
|
39
|
+
.picture-container {
|
|
40
40
|
$size: 128px;
|
|
41
41
|
border-radius: 50%;
|
|
42
42
|
width: $size;
|
|
43
43
|
height: $size;
|
|
44
|
-
border: 4px solid #
|
|
44
|
+
border: 4px solid #ccc;
|
|
45
45
|
margin: auto;
|
|
46
46
|
display: block;
|
|
47
47
|
}
|
|
@@ -50,6 +50,7 @@ theme:
|
|
|
50
50
|
border: 4px solid #fff;
|
|
51
51
|
border-radius: 50%;
|
|
52
52
|
width: 100%;
|
|
53
|
+
height: 100%;
|
|
53
54
|
box-sizing: border-box;
|
|
54
55
|
}
|
|
55
56
|
|
|
@@ -58,7 +59,7 @@ theme:
|
|
|
58
59
|
font-weight: 300;
|
|
59
60
|
|
|
60
61
|
small {
|
|
61
|
-
color: #
|
|
62
|
+
color: #999;
|
|
62
63
|
font-weight: 100;
|
|
63
64
|
}
|
|
64
65
|
}
|
|
@@ -248,7 +249,7 @@ theme:
|
|
|
248
249
|
<section id="basics">
|
|
249
250
|
{% unless basics.picture == "" %}
|
|
250
251
|
<div class="group">
|
|
251
|
-
<div class="picture-
|
|
252
|
+
<div class="picture-container">
|
|
252
253
|
<img class="picture" src="{{ basics.picture }}" alt="Picture of {{ basics.name }}" />
|
|
253
254
|
</div>
|
|
254
255
|
</div>
|