docs-cambiocds-com-jekyll-theme 0.1.6 → 0.1.7
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/_layouts/default.html +44 -9
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3bae27ac632c388a09cd957052687553485d78f0
|
|
4
|
+
data.tar.gz: 78eb1755e3f78a9f9222fd11ddf5b04367e65cb9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e2a1914f03e20a91e0d6ee331daed0a0beabade5414855b842c8c7446c7ede3ac9630da2ffd45871b8bb2f5c066d6501b85c4c08392fb3283eca1312a0b805b
|
|
7
|
+
data.tar.gz: 94fd3856c374b5a11dfd15ba58acd5654e9c1f51d443d07e03ce2d4c45d9e478671acac10c13117e638ecad48a87927e2b44855ab21b4774a32ff0537e0e8104
|
data/_layouts/default.html
CHANGED
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
<meta name="description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}">
|
|
10
10
|
<meta name="author" content="Your name goes here">
|
|
11
11
|
<meta name="copyright" content="Maybe consider a Creative Commons license">
|
|
12
|
+
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">
|
|
12
13
|
<link rel="stylesheet" href="{{page.root}}assets/css/font-awesome.css">
|
|
13
14
|
<link rel="stylesheet" href="{{page.root}}assets/css/coderay.css">
|
|
14
15
|
<link rel="stylesheet" href="{{page.root}}assets/css/asciidoctor.css">
|
|
15
|
-
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">
|
|
16
16
|
<script src="{{page.root}}assets/js/vendor/modernizr.js"></script>
|
|
17
17
|
<script src="{{page.root}}assets/js/vendor/jquery.js"></script>
|
|
18
18
|
<script src="{{page.root}}assets/js/foundation.min.js"></script>
|
|
@@ -27,10 +27,36 @@
|
|
|
27
27
|
.navbar-brand {
|
|
28
28
|
color: #FFFFFF;
|
|
29
29
|
padding: 0 0.9375rem;
|
|
30
|
+
margin-right: 0px;
|
|
31
|
+
text-decoration: none;
|
|
32
|
+
font-weight: bold;
|
|
30
33
|
}
|
|
31
34
|
.navbar-brand:hover {
|
|
32
35
|
color: #FFFFFF;
|
|
33
36
|
}
|
|
37
|
+
.mr-auto{
|
|
38
|
+
margin-right: 0px !important;
|
|
39
|
+
}
|
|
40
|
+
ul.navbar-nav.mr-auto {
|
|
41
|
+
margin-left: 0px;
|
|
42
|
+
}
|
|
43
|
+
li.nav-item {
|
|
44
|
+
margin-right: 12px;
|
|
45
|
+
}
|
|
46
|
+
li.nav-item h1 {
|
|
47
|
+
margin-bottom: 15px;
|
|
48
|
+
margin-top: 0px;
|
|
49
|
+
}
|
|
50
|
+
li.nav-item h1 a {
|
|
51
|
+
color: #FFFFFF;
|
|
52
|
+
font-size: 1.25rem;
|
|
53
|
+
font-weight: 400;
|
|
54
|
+
text-decoration: none;
|
|
55
|
+
}
|
|
56
|
+
li.nav-item h1 a:hover {
|
|
57
|
+
color: #FFFFFF;
|
|
58
|
+
text-decoration: none;
|
|
59
|
+
}
|
|
34
60
|
.card {
|
|
35
61
|
margin-top: 20px;
|
|
36
62
|
margin-bottom: 20px;
|
|
@@ -38,6 +64,13 @@
|
|
|
38
64
|
.card-header {
|
|
39
65
|
color: #ba3925;
|
|
40
66
|
}
|
|
67
|
+
.large-12.columns {
|
|
68
|
+
position: relative;
|
|
69
|
+
padding-left: 0.9375rem;
|
|
70
|
+
padding-right: 0.9375rem;
|
|
71
|
+
float: left;
|
|
72
|
+
width: 100%;
|
|
73
|
+
}
|
|
41
74
|
.footer {
|
|
42
75
|
padding-left: 10px;
|
|
43
76
|
padding-right: 10px;
|
|
@@ -57,7 +90,7 @@
|
|
|
57
90
|
<div class="collapse navbar-collapse">
|
|
58
91
|
{% if site.title != 'CDS Documentation' %}
|
|
59
92
|
<ul class="navbar-nav mr-auto">
|
|
60
|
-
<li class="nav-item"><h1 style="color:#FFFFFF;font-weight:bold">></h1></li>
|
|
93
|
+
<li class="nav-item"><h1 style="color:#FFFFFF; font-size:1.25rem; font-weight:bold; margin-top:20px;">></h1></li>
|
|
61
94
|
</ul>
|
|
62
95
|
{% if jekyll.environment != "master" and jekyll.environment != "development" %}
|
|
63
96
|
<ul class="navbar-nav mr-auto">
|
|
@@ -79,7 +112,7 @@
|
|
|
79
112
|
{% endif %}
|
|
80
113
|
{% if jekyll.environment != "master" and jekyll.environment != "development" %}
|
|
81
114
|
<ul class="navbar-nav mr-auto">
|
|
82
|
-
<li class="nav-item"><h1 style="color:#FFFFFF;font-weight:bold">></h1></li>
|
|
115
|
+
<li class="nav-item"><h1 style="color:#FFFFFF; font-size:1.25rem; font-weight:bold; margin-top:20px;">></h1></li>
|
|
83
116
|
</ul>
|
|
84
117
|
<ul class="navbar-nav mr-auto">
|
|
85
118
|
<li class="nav-item"><h1><a href=".">{{jekyll.environment}}</a></h1></li>
|
|
@@ -104,11 +137,13 @@
|
|
|
104
137
|
|
|
105
138
|
|
|
106
139
|
<!-- Footer -->
|
|
107
|
-
|
|
108
|
-
<
|
|
109
|
-
|
|
110
|
-
<
|
|
111
|
-
|
|
112
|
-
|
|
140
|
+
<div class="fixed-bottom">
|
|
141
|
+
<footer class="footer">
|
|
142
|
+
<hr>
|
|
143
|
+
<div class="container">
|
|
144
|
+
<img src="assets/images/CAMBIO_logotype_healthcare_horizontal_RGB_2018.png"/>
|
|
145
|
+
</div>
|
|
146
|
+
</footer>
|
|
147
|
+
</div>
|
|
113
148
|
</body>
|
|
114
149
|
</html>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: docs-cambiocds-com-jekyll-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- MIG
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-07-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|