bay_jekyll_theme 1.1.2 → 1.1.4
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/CHANGELOG.md +12 -0
- data/README.md +11 -0
- data/_sass/_base.scss +1 -0
- data/_sass/_layout.scss +11 -3
- 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: e703029cb59b34ac8037cff1d369322a7cbb9f5a88e85037339e406127780824
|
|
4
|
+
data.tar.gz: 556cb9a2f5a60960853360aeb7a1efac35a304fff2addbd0700593e8ed1e4837
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7148cf72923fa0820e084b454fbfa0e513a3f7a204cfd372bbd2f330cf471550cacc8535839e08f055c5d4989136d056ce62562427dc09513695391500d55bb4
|
|
7
|
+
data.tar.gz: e13ed3c0117ad464f75bf8670c06984282f7fbc9e599359771dd9afac512bd793fc8441a510b6417d13add1c920e4a1740094a53edb58fd6b36c7665961d1c07
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
### [1.1.4](https://github.com/eliottvincent/bay/compare/v1.1.3...v1.1.4) (2024-09-01)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- Change "Powered by" alignment
|
|
10
|
+
|
|
11
|
+
### [1.1.3](https://github.com/eliottvincent/bay/compare/v1.1.2...v1.1.3) (2024-08-31)
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- Various fixes on mobile menu
|
|
16
|
+
|
|
5
17
|
### [1.1.2](https://github.com/eliottvincent/bay/compare/v1.1.1...v1.1.2) (2024-05-23)
|
|
6
18
|
|
|
7
19
|
### Features
|
data/README.md
CHANGED
|
@@ -9,6 +9,17 @@ Inspired by [dangrover.com](http://dangrover.com/). Current theme used at [eliot
|
|
|
9
9
|
|
|
10
10
|

|
|
11
11
|
|
|
12
|
+
|
|
13
|
+
## Table of contents
|
|
14
|
+
1. [Installation](#installation)
|
|
15
|
+
2. Website sections
|
|
16
|
+
1. [Header](#header)
|
|
17
|
+
2. [Footer](#footer)
|
|
18
|
+
3. [Home page](#home-page)
|
|
19
|
+
4. [Blog page](#blog-page)
|
|
20
|
+
5. [Development instructions](#development)
|
|
21
|
+
|
|
22
|
+
|
|
12
23
|
### Installation
|
|
13
24
|
|
|
14
25
|
|
data/_sass/_base.scss
CHANGED
data/_sass/_layout.scss
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
float: left;
|
|
25
25
|
|
|
26
26
|
img {
|
|
27
|
-
height:
|
|
27
|
+
height: 23px;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
&,
|
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
z-index: 10;
|
|
41
41
|
float: right;
|
|
42
42
|
line-height: 56px;
|
|
43
|
+
background-color: $background-color;
|
|
43
44
|
|
|
44
45
|
.menu-icon {
|
|
45
46
|
display: none;
|
|
@@ -67,20 +68,21 @@
|
|
|
67
68
|
.menu-icon {
|
|
68
69
|
display: block;
|
|
69
70
|
float: right;
|
|
71
|
+
border-radius: 5px;
|
|
70
72
|
width: 36px;
|
|
71
73
|
height: 26px;
|
|
72
74
|
line-height: 0;
|
|
73
75
|
padding-top: 4px;
|
|
74
76
|
text-align: center;
|
|
75
77
|
|
|
76
|
-
background:
|
|
78
|
+
background: $background-color url($base-url + '/assets/img/menu.png') 6px 4px no-repeat;
|
|
77
79
|
background-size: 26px 26px;
|
|
78
80
|
}
|
|
79
81
|
|
|
80
82
|
.menu {
|
|
81
83
|
clear: both;
|
|
82
84
|
display: none;
|
|
83
|
-
background-color:
|
|
85
|
+
background-color: $background-color;
|
|
84
86
|
min-width: 10em;
|
|
85
87
|
padding-bottom: 5px;
|
|
86
88
|
}
|
|
@@ -120,6 +122,7 @@
|
|
|
120
122
|
font-size: 15px;
|
|
121
123
|
color: $grey-color;
|
|
122
124
|
margin-left: -$spacing-unit / 2;
|
|
125
|
+
|
|
123
126
|
@extend %clearfix;
|
|
124
127
|
}
|
|
125
128
|
|
|
@@ -141,6 +144,7 @@
|
|
|
141
144
|
}
|
|
142
145
|
|
|
143
146
|
.powered-by {
|
|
147
|
+
text-align: end;
|
|
144
148
|
font-size: 13px !important;
|
|
145
149
|
color: $grey-color;
|
|
146
150
|
}
|
|
@@ -150,6 +154,10 @@
|
|
|
150
154
|
float: none;
|
|
151
155
|
width: 100%;
|
|
152
156
|
}
|
|
157
|
+
|
|
158
|
+
.powered-by {
|
|
159
|
+
text-align: start;
|
|
160
|
+
}
|
|
153
161
|
}
|
|
154
162
|
|
|
155
163
|
/**
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bay_jekyll_theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eliott Vincent
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-09-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|