darkmatter-theme 1.0.0
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 +7 -0
- data/LICENSE.txt +151 -0
- data/README.md +52 -0
- data/_includes/foot.html +0 -0
- data/_includes/footer.html +54 -0
- data/_includes/head.html +48 -0
- data/_includes/header.html +62 -0
- data/_layouts/cover.html +20 -0
- data/_layouts/default.html +34 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +5 -0
- data/_layouts/scroll.html +39 -0
- data/_layouts/slide.html +230 -0
- data/_pages/about/index.html +99 -0
- data/_pages/album/index.html +185 -0
- data/_pages/blog/index.html +151 -0
- data/_pages/cover/index.html +15 -0
- data/_pages/frontpage/index.html +216 -0
- data/_pages/fullwidth/index.html +38 -0
- data/_pages/landing/index.html +83 -0
- data/_pages/portfolio-1/index.html +119 -0
- data/_pages/portfolio-2/index.html +121 -0
- data/_pages/portfolio-3/index.html +121 -0
- data/_pages/portfolio-item/index.html +73 -0
- data/_pages/post/index.html +196 -0
- data/_pages/pricing/index.html +61 -0
- data/_pages/product/index.html +49 -0
- data/_pages/scroll/index.html +59 -0
- data/_pages/search/index.html +24 -0
- data/_pages/team/index.html +69 -0
- data/_pages/theme/index.html +1225 -0
- data/_pages/welcome/index.html +83 -0
- data/_posts/2018-01-01-what-is-bacon-ipsum-pt1.md +39 -0
- data/_posts/2018-02-01-what-is-bacon-ipsum-pt2.md +39 -0
- data/_posts/2018-03-01-what-is-bacon-ipsum-pt3.md +39 -0
- data/_slides/sample-presentation.md +115 -0
- data/assets/images/css/bg-pattern.png +0 -0
- data/assets/images/darkmatter.png +0 -0
- data/assets/scripts/jquery-easing.min.js +1 -0
- data/assets/scripts/scrolling-nav.js +29 -0
- data/assets/styles/darkmatter-cover.css +134 -0
- data/assets/styles/darkmatter-scroll.css +20 -0
- data/assets/styles/darkmatter.css +70 -0
- metadata +128 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Darkmatter Theme - (https://github.com/fellowhobbyist/darkmatter-theme)
|
|
3
|
+
* Copyright 2018 FellowHobbyist (Brian Hooper)
|
|
4
|
+
* Licensed under MPL_2.0 (https://www.mozilla.org/en-US/MPL/2.0/)
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
header {
|
|
8
|
+
padding: 154px 0 100px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
@media (min-width: 992px) {
|
|
12
|
+
header {
|
|
13
|
+
padding: 300px 0 500px 0;
|
|
14
|
+
background-color: #333;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
section {
|
|
19
|
+
padding: 150px 0;
|
|
20
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Darkmatter Theme - (https://github.com/fellowhobbyist/darkmatter-theme)
|
|
3
|
+
* Copyright 2018 FellowHobbyist (Brian Hooper)
|
|
4
|
+
* Licensed under MPL_2.0 (https://www.mozilla.org/en-US/MPL/2.0/)
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
body {
|
|
8
|
+
padding-top: 54px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
@media (min-width: 992px) {
|
|
12
|
+
body {
|
|
13
|
+
padding-top: 56px;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
header.masthead {
|
|
19
|
+
position: relative;
|
|
20
|
+
width: 100%;
|
|
21
|
+
padding-top: 150px;
|
|
22
|
+
padding-bottom: 100px;
|
|
23
|
+
color: white;
|
|
24
|
+
background: url("../images/css/bg-pattern.png"), #70C1B3;
|
|
25
|
+
background: url("../images/css/bg-pattern.png"), -webkit-linear-gradient(to left, #70C1B3, #50514F);
|
|
26
|
+
background: url("../images/css/bg-pattern.png"), linear-gradient(to left, #70C1B3, #50514F);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.bg-image-full {
|
|
30
|
+
background: no-repeat center center scroll;
|
|
31
|
+
-webkit-background-size: cover;
|
|
32
|
+
-moz-background-size: cover;
|
|
33
|
+
background-size: cover;
|
|
34
|
+
-o-background-size: cover;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/*
|
|
38
|
+
* Dummy devices (replace them with your own or something else entirely!)
|
|
39
|
+
*/
|
|
40
|
+
|
|
41
|
+
.product-device {
|
|
42
|
+
position: absolute;
|
|
43
|
+
right: 10%;
|
|
44
|
+
bottom: -30%;
|
|
45
|
+
width: 300px;
|
|
46
|
+
height: 540px;
|
|
47
|
+
background-color: #333;
|
|
48
|
+
border-radius: 21px;
|
|
49
|
+
-webkit-transform: rotate(30deg);
|
|
50
|
+
transform: rotate(30deg);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.product-device::before {
|
|
54
|
+
position: absolute;
|
|
55
|
+
top: 10%;
|
|
56
|
+
right: 10px;
|
|
57
|
+
bottom: 10%;
|
|
58
|
+
left: 10px;
|
|
59
|
+
content: "";
|
|
60
|
+
background-color: rgba(255, 255, 255, .1);
|
|
61
|
+
border-radius: 5px;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.product-device-2 {
|
|
65
|
+
top: -25%;
|
|
66
|
+
right: auto;
|
|
67
|
+
bottom: 0;
|
|
68
|
+
left: 5%;
|
|
69
|
+
background-color: #e5e5e5;
|
|
70
|
+
}
|
metadata
ADDED
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: darkmatter-theme
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Brian Hooper
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2018-11-15 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: jekyll
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '3.8'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '3.8'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: bundler
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '1.16'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '1.16'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: rake
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '12.0'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '12.0'
|
|
55
|
+
description:
|
|
56
|
+
email:
|
|
57
|
+
- afellowhobbyist@gmail.com
|
|
58
|
+
executables: []
|
|
59
|
+
extensions: []
|
|
60
|
+
extra_rdoc_files: []
|
|
61
|
+
files:
|
|
62
|
+
- LICENSE.txt
|
|
63
|
+
- README.md
|
|
64
|
+
- _includes/foot.html
|
|
65
|
+
- _includes/footer.html
|
|
66
|
+
- _includes/head.html
|
|
67
|
+
- _includes/header.html
|
|
68
|
+
- _layouts/cover.html
|
|
69
|
+
- _layouts/default.html
|
|
70
|
+
- _layouts/page.html
|
|
71
|
+
- _layouts/post.html
|
|
72
|
+
- _layouts/scroll.html
|
|
73
|
+
- _layouts/slide.html
|
|
74
|
+
- _pages/about/index.html
|
|
75
|
+
- _pages/album/index.html
|
|
76
|
+
- _pages/blog/index.html
|
|
77
|
+
- _pages/cover/index.html
|
|
78
|
+
- _pages/frontpage/index.html
|
|
79
|
+
- _pages/fullwidth/index.html
|
|
80
|
+
- _pages/landing/index.html
|
|
81
|
+
- _pages/portfolio-1/index.html
|
|
82
|
+
- _pages/portfolio-2/index.html
|
|
83
|
+
- _pages/portfolio-3/index.html
|
|
84
|
+
- _pages/portfolio-item/index.html
|
|
85
|
+
- _pages/post/index.html
|
|
86
|
+
- _pages/pricing/index.html
|
|
87
|
+
- _pages/product/index.html
|
|
88
|
+
- _pages/scroll/index.html
|
|
89
|
+
- _pages/search/index.html
|
|
90
|
+
- _pages/team/index.html
|
|
91
|
+
- _pages/theme/index.html
|
|
92
|
+
- _pages/welcome/index.html
|
|
93
|
+
- _posts/2018-01-01-what-is-bacon-ipsum-pt1.md
|
|
94
|
+
- _posts/2018-02-01-what-is-bacon-ipsum-pt2.md
|
|
95
|
+
- _posts/2018-03-01-what-is-bacon-ipsum-pt3.md
|
|
96
|
+
- _slides/sample-presentation.md
|
|
97
|
+
- assets/images/css/bg-pattern.png
|
|
98
|
+
- assets/images/darkmatter.png
|
|
99
|
+
- assets/scripts/jquery-easing.min.js
|
|
100
|
+
- assets/scripts/scrolling-nav.js
|
|
101
|
+
- assets/styles/darkmatter-cover.css
|
|
102
|
+
- assets/styles/darkmatter-scroll.css
|
|
103
|
+
- assets/styles/darkmatter.css
|
|
104
|
+
homepage: https://github.com/fellowhobbyist/darkmatter-theme
|
|
105
|
+
licenses:
|
|
106
|
+
- MPL-2.0
|
|
107
|
+
metadata: {}
|
|
108
|
+
post_install_message:
|
|
109
|
+
rdoc_options: []
|
|
110
|
+
require_paths:
|
|
111
|
+
- lib
|
|
112
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
113
|
+
requirements:
|
|
114
|
+
- - ">="
|
|
115
|
+
- !ruby/object:Gem::Version
|
|
116
|
+
version: '0'
|
|
117
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
118
|
+
requirements:
|
|
119
|
+
- - ">="
|
|
120
|
+
- !ruby/object:Gem::Version
|
|
121
|
+
version: '0'
|
|
122
|
+
requirements: []
|
|
123
|
+
rubyforge_project:
|
|
124
|
+
rubygems_version: 2.7.6
|
|
125
|
+
signing_key:
|
|
126
|
+
specification_version: 4
|
|
127
|
+
summary: A Minimalist Jekyll Theme for Technical Writers
|
|
128
|
+
test_files: []
|