docs-cambiocds-com-jekyll-theme 0.1.5 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 260a8f0dd91a5b5b7a516956c88008793f9e79e4
4
- data.tar.gz: b375868c81f37a28b993fd03581ae7a59b873eca
3
+ metadata.gz: 645a100f9e1338830282edd9cbcbeab411efaad2
4
+ data.tar.gz: b38dcfdd78f64bcd7a6214ca2eb0eb623979b956
5
5
  SHA512:
6
- metadata.gz: '09e1be6273813cd8f1d306c460cf6bae664c8414798c9940eecd5921452dead1f85631fc5f5476638811f9b5dcb3b24e6056abc18a0d82dffdd936a7cec3ed2f'
7
- data.tar.gz: 4662c116f4164b807bcb7e6a9ada14f6db1f29ef7d678386c6666b65a0fb2465cdfa94d852c9391c74d95ab753c73010c2a0a58c2b4f3509b680cd43a220fa89
6
+ metadata.gz: 1a57ae2ba8cab589ca58d9982c73073c8827bc819d6778f34b3092be759f6d60c44b36e8eee5d556feb9d1ac30bb7662845602f3b570ec89bdf2de87687be99d
7
+ data.tar.gz: d5a81e61341dba7e7de0239c659ace05d2cdce461459213978d9b76d97bc4911a00f2274583c51f4ef583fbbebc9fc967d5abf00e2da32a6451f16a0e255ab0d
@@ -9,58 +9,87 @@
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="{{page.root}}assets/css/foundation.css">
13
12
  <link rel="stylesheet" href="{{page.root}}assets/css/font-awesome.css">
14
13
  <link rel="stylesheet" href="{{page.root}}assets/css/coderay.css">
15
14
  <link rel="stylesheet" href="{{page.root}}assets/css/asciidoctor.css">
16
- <link rel="stylesheet" href="{{page.root}}assets/css/custom.css">
15
+ <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">
17
16
  <script src="{{page.root}}assets/js/vendor/modernizr.js"></script>
17
+ <script src="{{page.root}}assets/js/vendor/jquery.js"></script>
18
+ <script src="{{page.root}}assets/js/foundation.min.js"></script>
19
+ <style>
20
+ .navbar {
21
+ background-image: url("assets/images/header-page.png");
22
+ background-color: #333333;
23
+ padding: 3px;
24
+ height: 2.8125rem;
25
+ line-height: 2.8125rem;
26
+ }
27
+ .navbar-brand {
28
+ color: #FFFFFF;
29
+ padding: 0 0.9375rem;
30
+ }
31
+ .navbar-brand:hover {
32
+ color: #FFFFFF;
33
+ }
34
+ .card {
35
+ margin-top: 20px;
36
+ margin-bottom: 20px;
37
+ }
38
+ .card-header {
39
+ color: #ba3925;
40
+ }
41
+ .footer {
42
+ padding-left: 10px;
43
+ padding-right: 10px;
44
+ }
45
+ .footer .container {
46
+ margin-left: 10px;
47
+ }
48
+ .footer .container img {
49
+ width: 170px;
50
+ }
51
+ </style>
18
52
  </head>
19
53
  <body>
20
54
  <!-- Nav Bar -->
21
- <nav class="top-bar" data-topbar >
22
- <section>
23
- <ul class="title-area">
24
- <li class="name"><h1><a href="http://docs.cambiocds.com">CDS Documentation</a></h1></li>
25
- </ul>
26
- {% if site.title != 'CDS Documentation' %}
27
- <ul class="title-area">
28
- <li class="name"><h1 style="color:#FFFFFF;font-weight:bold">></h1></li>
29
- </ul>
30
- {% if jekyll.environment != "master" and jekyll.environment != "development" %}
31
- <ul class="title-area">
32
- <li class="name">
33
- <h1>
34
- <a href="..">{{site.title}}</a>
35
- </h1>
36
- </li>
37
- </ul>
38
- {% else %}
39
- <ul class="title-area">
40
- <li class="name">
41
- <h1>
42
- <a href=".">{{site.title}}</a>
43
- </h1>
44
- </li>
45
- </ul>
46
- {% endif %}
47
- {% endif %}
48
- {% if jekyll.environment != "master" and jekyll.environment != "development" %}
49
- <ul class="title-area">
50
- <li class="name"><h1 style="color:#FFFFFF;font-weight:bold">></h1></li>
51
- </ul>
52
- <ul class="title-area">
53
- <li class="name"><h1><a href=".">{{jekyll.environment}}</a></h1></li>
54
- </ul>
55
- {% endif %}
56
- </section>
57
- </nav>
55
+ <nav class="navbar navbar-expand">
56
+ <a class="navbar-brand" href="http://docs.cambiocds.com">CDS Documentation</a>
57
+ <div class="collapse navbar-collapse">
58
+ {% if site.title != 'CDS Documentation' %}
59
+ <ul class="navbar-nav mr-auto">
60
+ <li class="nav-item"><h1 style="color:#FFFFFF;font-weight:bold">></h1></li>
61
+ </ul>
62
+ {% if jekyll.environment != "master" and jekyll.environment != "development" %}
63
+ <ul class="navbar-nav mr-auto">
64
+ <li class="nav-item">
65
+ <h1>
66
+ <a href="..">{{site.title}}</a>
67
+ </h1>
68
+ </li>
69
+ </ul>
70
+ {% else %}
71
+ <ul class="navbar-nav mr-auto">
72
+ <li class="nav-item">
73
+ <h1>
74
+ <a href=".">{{site.title}}</a>
75
+ </h1>
76
+ </li>
77
+ </ul>
78
+ {% endif %}
79
+ {% endif %}
80
+ {% if jekyll.environment != "master" and jekyll.environment != "development" %}
81
+ <ul class="navbar-nav mr-auto">
82
+ <li class="nav-item"><h1 style="color:#FFFFFF;font-weight:bold">></h1></li>
83
+ </ul>
84
+ <ul class="navbar-nav mr-auto">
85
+ <li class="nav-item"><h1><a href=".">{{jekyll.environment}}</a></h1></li>
86
+ </ul>
87
+ {% endif %}
88
+ </div>
89
+ </nav>
58
90
  <!-- End Nav -->
59
91
 
60
-
61
92
  <!-- Main Page Content and Sidebar -->
62
-
63
- <div class="row-custom">
64
93
  {% if site.title != page.title %}
65
94
  <h2>{{page.title}}</h2>
66
95
  {% endif %}
@@ -70,27 +99,16 @@
70
99
  {{ content }}
71
100
 
72
101
  </div>
73
-
74
102
  <!-- End Main Content -->
75
- </div>
76
-
77
103
  <!-- End Main Content and Sidebar -->
78
104
 
79
105
 
80
106
  <!-- Footer -->
81
-
82
- <footer class="row-custom">
83
- <div class="large-12 columns">
84
- <hr>
85
- <div class="row-custom">
86
- <div class="large-12 columns">
87
- <img src="assets/images/cambio-logo.png"/>
88
- </div>
89
- </div>
90
- </div>
107
+ <footer class="footer">
108
+ <hr>
109
+ <div class="container">
110
+ <img src="assets/images/CAMBIO_logotype_healthcare_horizontal_RGB_2018.png"/>
111
+ </div>
91
112
  </footer>
92
-
93
- <script src="{{page.root}}assets/js/vendor/jquery.js"></script>
94
- <script src="{{page.root}}assets/js/foundation.min.js"></script>
95
113
  </body>
96
114
  </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.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - MIG
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-06-28 00:00:00.000000000 Z
11
+ date: 2018-06-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -64,13 +64,12 @@ files:
64
64
  - _layouts/default.html
65
65
  - assets/css/asciidoctor.css
66
66
  - assets/css/coderay.css
67
- - assets/css/custom.css
68
67
  - assets/css/font-awesome.css
69
68
  - assets/css/font-awesome.min.css
70
69
  - assets/css/foundation.css
71
70
  - assets/css/foundation.min.css
72
71
  - assets/css/normalize.css
73
- - assets/images/cambio-logo.png
72
+ - assets/images/CAMBIO_logotype_healthcare_horizontal_RGB_2018.png
74
73
  - assets/images/header-page.png
75
74
  - assets/js/foundation.min.js
76
75
  - assets/js/foundation/foundation.abide.js
@@ -1,100 +0,0 @@
1
- .card-custom {
2
- box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
3
- transition: 0.3s;
4
- border-radius: 5px;
5
- margin-left: auto;
6
- margin-right: auto;
7
- word-wrap: break-word;
8
- padding: 15px;
9
- }
10
-
11
- .card-custom h2 {
12
- font-size: 1.8rem;
13
- margin-top: 0px;
14
- }
15
-
16
- .card-custom:hover {
17
- box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
18
- }
19
-
20
- .container {
21
- padding: 0px;
22
- width: 100%;
23
- margin-bottom: 100px;
24
- margin-top: 30px;
25
- }
26
-
27
- @media (min-width: 576px) {
28
- .container {
29
- max-width: 540px;
30
- padding: 0;
31
- }
32
- .card-custom {
33
- width: 100%;
34
- margin-bottom: 20px;
35
- }
36
- }
37
-
38
- @media (min-width: 768px) {
39
- .container {
40
- max-width: 720px;
41
- padding: 2px 16px;
42
- }
43
- .card-custom {
44
- width: 70%;
45
- margin-bottom: 20px;
46
- }
47
- }
48
-
49
- @media (min-width: 992px) {
50
- .container {
51
- max-width: 960px;
52
- padding: 2px 16px;
53
- }
54
- .card-custom {
55
- width: 50%;
56
- margin-bottom: 20px;
57
- }
58
- }
59
-
60
- @media (min-width: 1200px) {
61
- .container {
62
- max-width: 1140px;
63
- padding: 2px 16px;
64
- }
65
- .card-custom {
66
- width: 50%;
67
- margin-bottom: 20px;
68
- }
69
- }
70
-
71
- @media (min-width: 1600px) {
72
- .container {
73
- max-width: 100%;
74
- padding: 2px 16px;
75
- }
76
- }
77
-
78
- .home .row-custom .column-custom {
79
- position: relative;
80
- width: 100%;
81
- }
82
-
83
- @media (min-width: 768px) {
84
- .home .row-custom .column-custom {
85
- -webkit-box-flex: 0;
86
- flex: 0 0 33.333333%;
87
- max-width: 33.333333%;
88
- }
89
- }
90
- .row-custom {
91
- display: flex;
92
- flex-wrap: wrap;
93
- border-spacing: 30px;
94
- }
95
-
96
- .row-custom:after {
97
- content: "";
98
- display: table;
99
- clear: both;
100
- }
Binary file