daydream-theme 1.0.1 → 1.0.2
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/README.md +15 -1
- data/_sass/daydream/_sidebar.scss +19 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 95132f2008e5f77ce448a2c75e33b984004bb6daec0b93ba199e7c47f83b0234
|
|
4
|
+
data.tar.gz: beb4de1f55ce77888643de1190980ed215558bf7b4c203f3904b70fee7528adf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9359f3002f936150faafe7a8f75f6ce9abe48cf93623f8612e09c923a45c0b2592675744ce3282f3804d9d785958e83b49a28494e7c76bd1d7b10862e9a8ee76
|
|
7
|
+
data.tar.gz: 0a02ea65b5bd5f3a0505abd5346479d7f7968393b671f50550a0aeb431df67a6d4fe5ea7994181c9ba37b27694ef255d27d0456897419cd80b99533e57b71637
|
data/README.md
CHANGED
|
@@ -6,7 +6,7 @@ Welcome to my Jekyll theme, its pretty basic, there isn't really much more too i
|
|
|
6
6
|
|
|
7
7
|
A live demo can also be seen [here](https://embar.io).
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Theme is also somewhat mobile friendly!
|
|
10
10
|
|
|
11
11
|
This theme should be accessability friendly as its just HTML and CSS, but no gaurantees there, I am not a frontend developer.
|
|
12
12
|
|
|
@@ -15,6 +15,7 @@ Photo by [Wolfgang Hasselmann](https://unsplash.com/@wolfgang_hasselmann?utm_sou
|
|
|
15
15
|
|
|
16
16
|
## Installation
|
|
17
17
|
|
|
18
|
+
### Standalone Jekyll
|
|
18
19
|
Add this line to your Jekyll site's `Gemfile`:
|
|
19
20
|
|
|
20
21
|
```ruby
|
|
@@ -39,6 +40,19 @@ Or install it yourself as:
|
|
|
39
40
|
|
|
40
41
|
$ gem install daydream
|
|
41
42
|
|
|
43
|
+
|
|
44
|
+
### Github Pages
|
|
45
|
+
|
|
46
|
+
To install on github pages instead add this line to your `GemFile` under the jekyll plugins group:
|
|
47
|
+
```ruby
|
|
48
|
+
gem "jekyll-remote-theme"
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
then in your Jekyll site's `_config.yml`:
|
|
52
|
+
```yaml
|
|
53
|
+
remote_theme: williambenembarek/daydream-theme
|
|
54
|
+
```
|
|
55
|
+
|
|
42
56
|
## Usage
|
|
43
57
|
|
|
44
58
|
Edit config, replace bg.jpg if you want to, add a picture called me.jpg in `assets/me.jpg` to include a picture.
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
width: 15%;
|
|
5
5
|
color: var(--sidebar-color);
|
|
6
6
|
background: center / cover;
|
|
7
|
-
outline: 2px red solid;
|
|
8
7
|
}
|
|
9
8
|
|
|
10
9
|
.sidebar-shield {
|
|
@@ -79,7 +78,6 @@
|
|
|
79
78
|
overflow: hidden;
|
|
80
79
|
border-radius: 40%;
|
|
81
80
|
margin: 1em;
|
|
82
|
-
outline: 2px red solid;
|
|
83
81
|
}
|
|
84
82
|
|
|
85
83
|
img {
|
|
@@ -177,3 +175,22 @@
|
|
|
177
175
|
height: 100%;
|
|
178
176
|
width: auto;
|
|
179
177
|
}}
|
|
178
|
+
|
|
179
|
+
@media (min-width: $md-screen) {
|
|
180
|
+
.header {
|
|
181
|
+
text-align: left;
|
|
182
|
+
position: absolute;
|
|
183
|
+
top: 10%;
|
|
184
|
+
text-underline-offset: 0.35rem;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.nav-item a {
|
|
188
|
+
padding-left: 0;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.social-item {
|
|
192
|
+
a {
|
|
193
|
+
padding-left: 0;
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
}
|