bravissimo 0.1.3 → 0.1.5
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/_includes/blog_date.html +1 -1
- data/_includes/footer.html +11 -4
- data/_layouts/default.html +1 -3
- data/_sass/bravissimo/_bootstrap.scss +9 -0
- data/_sass/bravissimo/_cards.scss +5 -0
- data/_sass/bravissimo/_pages.scss +7 -2
- data/assets/css/main.scss +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 861533106fbf37d465d125a8d85d9817f46b132bd0f637d532f6add343e4e2af
|
4
|
+
data.tar.gz: 613b514194b87e81253d4d36dec8d7faef5fee6c99b0f1d4cb6f311f307cdeef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bdf4d51fe5377abd304aa6d6a8a43ab0a76d74ff57ab54fb3a52754bfb8b26ba19b8108dfe9cf04487d4612071172d38144e7b7e065225f48b137ae342245304
|
7
|
+
data.tar.gz: e4b9c4a18ca5eedb24587ea99972d1530fc57548a90dd8c11830bf7c74d0d9ec286ee010c88beb39b9d43d06c2a40b5a1df2ef2b77491476830639b4ef86c3a7
|
data/_includes/blog_date.html
CHANGED
data/_includes/footer.html
CHANGED
@@ -1,10 +1,17 @@
|
|
1
1
|
<footer>
|
2
2
|
<div class="container-fluid color-rust">
|
3
3
|
<div class="row footer-row">
|
4
|
-
<div class="col-xs-
|
5
|
-
<i class="
|
4
|
+
<div class="col-xs-4 footer-container">
|
5
|
+
<i class="footer-text">Copyright © {{ 'now' | date: "%Y" }} Gunther Cox</i>
|
6
6
|
</div>
|
7
|
-
<div class="col-xs-
|
7
|
+
<div class="col-xs-4 footer-container text-center">
|
8
|
+
{% for link in site.data.footer.links %}
|
9
|
+
<a href="{{ link.url }}" class="text-white footer-text">
|
10
|
+
{{ link.text }}
|
11
|
+
</a>
|
12
|
+
{% endfor %}
|
13
|
+
</div>
|
14
|
+
<div class="col-xs-4 text-right">
|
8
15
|
{% for account in site.data.social %}
|
9
16
|
<a href="{{ account.url }}" aria-label="{{ account.name }}" target='_blank' class="btn btn-lg btn-link text-white">
|
10
17
|
<i class="{{ account.icon_class }}" aria-hidden="true" style="font-size: 24px;"></i>
|
@@ -31,5 +38,5 @@
|
|
31
38
|
ga('create', '{{ site.google_analytics }}', 'auto');
|
32
39
|
ga('send', 'pageview');
|
33
40
|
</script>
|
34
|
-
<script async src="
|
41
|
+
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
35
42
|
{% endif %}
|
data/_layouts/default.html
CHANGED
@@ -25,6 +25,10 @@
|
|
25
25
|
color: #222;
|
26
26
|
}
|
27
27
|
|
28
|
+
.panel {
|
29
|
+
margin-bottom: 0px;
|
30
|
+
}
|
31
|
+
|
28
32
|
.panel-heading {
|
29
33
|
overflow: hidden;
|
30
34
|
}
|
@@ -51,3 +55,8 @@
|
|
51
55
|
.page-header {
|
52
56
|
border-bottom: 1px solid #fff;
|
53
57
|
}
|
58
|
+
|
59
|
+
.btn-link.text-white {
|
60
|
+
color: white;
|
61
|
+
text-decoration: none;;
|
62
|
+
}
|
@@ -35,10 +35,15 @@ footer {
|
|
35
35
|
padding: 15px 5px;
|
36
36
|
}
|
37
37
|
|
38
|
-
.
|
38
|
+
.footer-container {
|
39
39
|
padding-top: 15px;
|
40
40
|
}
|
41
41
|
|
42
|
-
.
|
42
|
+
.footer-text {
|
43
43
|
padding: 0px 15px;
|
44
44
|
}
|
45
|
+
|
46
|
+
.footer-text.text-white {
|
47
|
+
color: white;
|
48
|
+
text-decoration: none;
|
49
|
+
}
|
data/assets/css/main.scss
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bravissimo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gunther Cox
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-02-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|