lets-collab 0.1.1 → 0.1.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/.gitignore +5 -5
- data/Gemfile +2 -2
- data/LICENSE.txt +21 -21
- data/README.md +44 -44
- data/_config.yml +2 -2
- data/_includes/instagram.html +0 -0
- data/_layouts/default.html +25 -24
- data/_layouts/home-page.html +204 -161
- data/_layouts/post.html +3 -3
- data/_sass/base.scss +300 -282
- data/{images → assets}/hello-tina-may-logo.png +0 -0
- data/{images → assets}/logo.png +0 -0
- data/assets/main.scss +4 -4
- data/index.html +95 -69
- data/lets-collab-0.1.2/.gitignore +5 -0
- data/lets-collab-0.1.2/Gemfile +2 -0
- data/lets-collab-0.1.2/LICENSE.txt +21 -0
- data/lets-collab-0.1.2/README.md +50 -0
- data/lets-collab-0.1.2/_config.yml +2 -0
- data/lets-collab-0.1.2/_layouts/default.html +24 -0
- data/lets-collab-0.1.2/_layouts/home-page.html +204 -0
- data/lets-collab-0.1.2/_layouts/post.html +3 -0
- data/lets-collab-0.1.2/_sass/base.scss +300 -0
- data/lets-collab-0.1.2/assets/main.scss +4 -0
- data/{images → lets-collab-0.1.2/assets}/photo1.jpg +0 -0
- data/{images → lets-collab-0.1.2/assets}/photo2.jpg +0 -0
- data/{images → lets-collab-0.1.2/assets}/photo3.jpg +0 -0
- data/lets-collab-0.1.2/images/hello-tina-may-logo.png +0 -0
- data/lets-collab-0.1.2/images/logo.png +0 -0
- data/lets-collab-0.1.2/images/photo1.jpg +0 -0
- data/lets-collab-0.1.2/images/photo2.jpg +0 -0
- data/lets-collab-0.1.2/images/photo3.jpg +0 -0
- data/lets-collab-0.1.2/index.html +69 -0
- data/lets-collab-0.1.2/lets-collab.gemspec +17 -0
- data/lets-collab.gemspec +17 -17
- metadata +26 -8
@@ -0,0 +1,300 @@
|
|
1
|
+
* {
|
2
|
+
-webkit-box-sizing: border-box;
|
3
|
+
box-sizing: border-box;
|
4
|
+
margin:0;
|
5
|
+
padding:0;
|
6
|
+
}
|
7
|
+
|
8
|
+
img {
|
9
|
+
max-width: 100%;
|
10
|
+
}
|
11
|
+
|
12
|
+
div {
|
13
|
+
position: relative;
|
14
|
+
}
|
15
|
+
|
16
|
+
|
17
|
+
/* Utility Classes */
|
18
|
+
|
19
|
+
.vertical-align {
|
20
|
+
display: -webkit-box;
|
21
|
+
display: -ms-flexbox;
|
22
|
+
display: flex;
|
23
|
+
-webkit-box-align: center;
|
24
|
+
-ms-flex-align: center;
|
25
|
+
align-items: center;
|
26
|
+
}
|
27
|
+
|
28
|
+
.center {
|
29
|
+
text-align: center;
|
30
|
+
}
|
31
|
+
|
32
|
+
.margin-top {
|
33
|
+
margin-top: 5vh;
|
34
|
+
}
|
35
|
+
|
36
|
+
.no-padding {
|
37
|
+
padding: 0;
|
38
|
+
}
|
39
|
+
|
40
|
+
.full-width {
|
41
|
+
width: 100%;
|
42
|
+
}
|
43
|
+
|
44
|
+
|
45
|
+
/* Universal Styles */
|
46
|
+
|
47
|
+
body {
|
48
|
+
font-family: 'Montserrat', sans-serif;
|
49
|
+
color: rgb(90,90,90);
|
50
|
+
}
|
51
|
+
|
52
|
+
h1 {
|
53
|
+
|
54
|
+
font-weight: normal;
|
55
|
+
font-size: 2.5rem;
|
56
|
+
}
|
57
|
+
|
58
|
+
h2 {
|
59
|
+
color: #e74c3c;
|
60
|
+
font-family: 'Playfair Display', serif;
|
61
|
+
font-weight: normal;
|
62
|
+
font-size: 2rem;
|
63
|
+
margin-top: 1rem;
|
64
|
+
margin-bottom: 0.5rem;
|
65
|
+
text-align:center;
|
66
|
+
}
|
67
|
+
|
68
|
+
h3 {
|
69
|
+
font-weight: normal;
|
70
|
+
font-family: 'Playfair Display', serif;
|
71
|
+
}
|
72
|
+
|
73
|
+
a {
|
74
|
+
color: #e74c3c;
|
75
|
+
padding-bottom: 2px;
|
76
|
+
border-bottom: 1px solid #e74c3c;
|
77
|
+
text-decoration: none;
|
78
|
+
position: relative;
|
79
|
+
top:0;
|
80
|
+
-webkit-transition: 0.3s;
|
81
|
+
transition: 0.3s;
|
82
|
+
}
|
83
|
+
|
84
|
+
a:hover {
|
85
|
+
color: rgb(120,120,120);
|
86
|
+
border-color: rgb(120,120,120);
|
87
|
+
top:2px;
|
88
|
+
position: relative;
|
89
|
+
}
|
90
|
+
|
91
|
+
p {
|
92
|
+
line-height: 1.4;
|
93
|
+
margin: 0.8rem 0;
|
94
|
+
font-weight: 300;
|
95
|
+
text-align: center;
|
96
|
+
}
|
97
|
+
|
98
|
+
p span {
|
99
|
+
font-weight: bold;
|
100
|
+
padding-right: 10px;
|
101
|
+
}
|
102
|
+
|
103
|
+
|
104
|
+
ul {
|
105
|
+
list-style: inside;
|
106
|
+
}
|
107
|
+
|
108
|
+
li {
|
109
|
+
margin: 0.5rem 0;
|
110
|
+
font-weight: 300;
|
111
|
+
}
|
112
|
+
|
113
|
+
hr {
|
114
|
+
border: none;
|
115
|
+
border-bottom: 3px solid #e74c3c;
|
116
|
+
width: 50px;
|
117
|
+
margin:1rem auto 3rem;
|
118
|
+
}
|
119
|
+
|
120
|
+
section {
|
121
|
+
padding: 8vh 10%;
|
122
|
+
}
|
123
|
+
|
124
|
+
section:nth-child(odd) {
|
125
|
+
background-color: rgb(250,250,252);
|
126
|
+
}
|
127
|
+
|
128
|
+
|
129
|
+
/* Banner */
|
130
|
+
|
131
|
+
.banner {
|
132
|
+
padding: 0;
|
133
|
+
margin: 0;
|
134
|
+
min-height:100vh;
|
135
|
+
}
|
136
|
+
|
137
|
+
.banner .inner {
|
138
|
+
color: white;
|
139
|
+
position: relative;
|
140
|
+
text-align:center;
|
141
|
+
padding: 2vh 5% 2vh 5%;
|
142
|
+
}
|
143
|
+
|
144
|
+
.bg {
|
145
|
+
background-position: center;
|
146
|
+
background-size: cover;
|
147
|
+
padding-bottom:30%;
|
148
|
+
}
|
149
|
+
.banner .bg {
|
150
|
+
min-height: 80vh;
|
151
|
+
}
|
152
|
+
|
153
|
+
.pin-bottom {
|
154
|
+
position: absolute;
|
155
|
+
padding: 1rem;
|
156
|
+
margin: 0;
|
157
|
+
bottom: 0;
|
158
|
+
letter-spacing: 2px;
|
159
|
+
width: 100%;
|
160
|
+
left:0;
|
161
|
+
right:0;
|
162
|
+
}
|
163
|
+
|
164
|
+
.banner h2 {
|
165
|
+
margin: 0.5rem;
|
166
|
+
color: white;
|
167
|
+
}
|
168
|
+
|
169
|
+
|
170
|
+
/* Featured */
|
171
|
+
|
172
|
+
section.featured {
|
173
|
+
background-color: #e63f4f;
|
174
|
+
color: white;
|
175
|
+
text-align: center;
|
176
|
+
}
|
177
|
+
|
178
|
+
.featured a,
|
179
|
+
.featured h2 {
|
180
|
+
color: white;
|
181
|
+
border-color: white;
|
182
|
+
}
|
183
|
+
|
184
|
+
.featured hr {
|
185
|
+
margin: auto;
|
186
|
+
border-color: white;
|
187
|
+
}
|
188
|
+
|
189
|
+
.banner-color {
|
190
|
+
background-color:rgb(90,90,95);
|
191
|
+
}
|
192
|
+
|
193
|
+
/* Stats Section */
|
194
|
+
span.info {
|
195
|
+
font-size: 3rem;
|
196
|
+
display: block;
|
197
|
+
}
|
198
|
+
span.info-subtitle {
|
199
|
+
text-transform: uppercase;
|
200
|
+
letter-spacing: 1px;
|
201
|
+
font-size: 0.8rem;
|
202
|
+
}
|
203
|
+
|
204
|
+
.stats-section h3 {
|
205
|
+
margin-top: 1rem;
|
206
|
+
}
|
207
|
+
|
208
|
+
/* Gallery */
|
209
|
+
.gallery-section [class*=col] {
|
210
|
+
padding: 1px;
|
211
|
+
}
|
212
|
+
|
213
|
+
.gallery-item {
|
214
|
+
padding-bottom: 100%;
|
215
|
+
background-size: cover;
|
216
|
+
}
|
217
|
+
.caption {
|
218
|
+
background-color: rgb(240,240,240);
|
219
|
+
margin: 0;
|
220
|
+
padding: 0.5rem;
|
221
|
+
}
|
222
|
+
/* testimonials */
|
223
|
+
.testimonial {
|
224
|
+
padding: 0 4% 0 4%;
|
225
|
+
text-align: left;
|
226
|
+
margin-top: 1rem;
|
227
|
+
border-left: 1px solid rgb(200,200,200);
|
228
|
+
}
|
229
|
+
|
230
|
+
.testimonial p {
|
231
|
+
text-align: left;
|
232
|
+
}
|
233
|
+
|
234
|
+
/* Brand partnerships logos */
|
235
|
+
.logo-item {
|
236
|
+
padding-bottom: 60%;
|
237
|
+
background-size: contain;
|
238
|
+
background-repeat: no-repeat;
|
239
|
+
}
|
240
|
+
/* Footer */
|
241
|
+
footer {
|
242
|
+
padding:1rem;
|
243
|
+
}
|
244
|
+
|
245
|
+
footer p {
|
246
|
+
line-height: 1.5;
|
247
|
+
font-weight: normal;
|
248
|
+
color: rgb(120,120,125);
|
249
|
+
font-size: 0.8rem;
|
250
|
+
}
|
251
|
+
footer a {
|
252
|
+
border: none;
|
253
|
+
}
|
254
|
+
footer a:hover {
|
255
|
+
top:0;
|
256
|
+
}
|
257
|
+
|
258
|
+
.subtle {
|
259
|
+
color: rgb(120,120,125);
|
260
|
+
font-weight: lighter;
|
261
|
+
}
|
262
|
+
|
263
|
+
.subtle a {
|
264
|
+
color: rgb(120,120,125);
|
265
|
+
font-weight: normal;
|
266
|
+
}
|
267
|
+
|
268
|
+
|
269
|
+
/* Responsive */
|
270
|
+
.mob-show {
|
271
|
+
display:none;
|
272
|
+
}
|
273
|
+
|
274
|
+
/* banners */
|
275
|
+
@media(max-width:768px) {
|
276
|
+
section {
|
277
|
+
padding: 5vh 5%;
|
278
|
+
}
|
279
|
+
.banner {
|
280
|
+
min-height: 0;
|
281
|
+
}
|
282
|
+
.logo {
|
283
|
+
max-height: 15vh;
|
284
|
+
}
|
285
|
+
.vertical-align {
|
286
|
+
display: block;
|
287
|
+
}
|
288
|
+
.mob-hide {
|
289
|
+
display: none!important;
|
290
|
+
}
|
291
|
+
.mob-show {
|
292
|
+
display:block;
|
293
|
+
}
|
294
|
+
/* stats */
|
295
|
+
.stats-section [class*='col'] {
|
296
|
+
padding: 1rem;
|
297
|
+
border: 1px solid rgb(245,245,245);
|
298
|
+
}
|
299
|
+
|
300
|
+
} /* end of media query */
|
File without changes
|
File without changes
|
File without changes
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,69 @@
|
|
1
|
+
---
|
2
|
+
layout: home-page
|
3
|
+
title: Hello Tina May
|
4
|
+
description: This is the blurb for SEO
|
5
|
+
logo: true
|
6
|
+
logo_path: /images/hello-tina-may-logo.png
|
7
|
+
banner-title: Hello Tina May
|
8
|
+
banner-image_path: /images/photo1.jpg
|
9
|
+
banner_color: '#16a085'
|
10
|
+
banner-text_color: '#ffffff'
|
11
|
+
featured_color: '#16a085'
|
12
|
+
stats:
|
13
|
+
- amount: 200k
|
14
|
+
subtitle: Total
|
15
|
+
title: Instagram Followers
|
16
|
+
- amount: 150k
|
17
|
+
subtitle: Monthly
|
18
|
+
title: Blog Traffic
|
19
|
+
- amount: 18%
|
20
|
+
subtitle: Average
|
21
|
+
title: Engagement Rate
|
22
|
+
- amount: 1.2 mill
|
23
|
+
subtitle: Monthly
|
24
|
+
title: Total Reach
|
25
|
+
gallery-captions: true
|
26
|
+
gallery:
|
27
|
+
- image_path: /images/photo1.jpg
|
28
|
+
caption: Hello Tina May
|
29
|
+
- image_path: /images/photo2.jpg
|
30
|
+
caption: Tina May
|
31
|
+
- image_path: /images/photo3.jpg
|
32
|
+
caption: Hello Tina May
|
33
|
+
- image_path: /images/photo2.jpg
|
34
|
+
caption: Tina May
|
35
|
+
- image_path: /images/photo3.jpg
|
36
|
+
caption: Peekaboo Tina May
|
37
|
+
- image_path: /images/photo1.jpg
|
38
|
+
caption: Hello Goodbye
|
39
|
+
- image_path: /images/photo1.jpg
|
40
|
+
caption: Hello Goodbye
|
41
|
+
brand-partnerships: true
|
42
|
+
brand-logos:
|
43
|
+
- image_path: /images/logo.png
|
44
|
+
- image_path: /images/logo.png
|
45
|
+
- image_path: /images/logo.png
|
46
|
+
- image_path: /images/logo.png
|
47
|
+
testimonials-section: true
|
48
|
+
testimonials:
|
49
|
+
- quote: >-
|
50
|
+
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
|
51
|
+
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
|
52
|
+
veniam.
|
53
|
+
author: Amy Smith
|
54
|
+
- quote: >-
|
55
|
+
Consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore
|
56
|
+
et dolore magna aliqua. Ut enim ad minim veniam.
|
57
|
+
author: Jane Lu
|
58
|
+
- quote: >-
|
59
|
+
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
|
60
|
+
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
|
61
|
+
veniam.
|
62
|
+
author: Johnny Appleseed
|
63
|
+
custom-font_html: |
|
64
|
+
<link href="https://fonts.googleapis.com/css?family=Slabo+27px" rel="stylesheet">
|
65
|
+
font-name:
|
66
|
+
instagram: true
|
67
|
+
instagram-code: |
|
68
|
+
<!-- LightWidget WIDGET --><script src="//lightwidget.com/widgets/lightwidget.js"></script><iframe src="//lightwidget.com/widgets/e4fd7255dccd5462bd71b8a59cc17d2f.html" scrolling="no" allowtransparency="true" class="lightwidget-widget" style="width: 100%; border: 0; overflow: hidden;"></iframe>
|
69
|
+
---
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = "lets-collab"
|
5
|
+
s.version = "0.1.0"
|
6
|
+
s.license = "MIT"
|
7
|
+
s.authors = ["Tina May"]
|
8
|
+
s.email = ["tina@instituteofcode.com"]
|
9
|
+
s.homepage = "https://letscollab.io"
|
10
|
+
s.summary = "Lets Collab Media Kit Template"
|
11
|
+
|
12
|
+
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
13
|
+
|
14
|
+
s.platform = Gem::Platform::RUBY
|
15
|
+
s.add_runtime_dependency "jekyll", "~> 3.5"
|
16
|
+
s.add_runtime_dependency "jekyll-seo-tag", "~> 2.0"
|
17
|
+
end
|
data/lets-collab.gemspec
CHANGED
@@ -1,17 +1,17 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
|
3
|
-
Gem::Specification.new do |s|
|
4
|
-
s.name = "lets-collab"
|
5
|
-
s.version = "0.1.
|
6
|
-
s.license = "MIT"
|
7
|
-
s.authors = ["Tina May"]
|
8
|
-
s.email = ["tina@instituteofcode.com"]
|
9
|
-
s.homepage = "https://letscollab.io"
|
10
|
-
s.summary = "Lets Collab Media Kit Template"
|
11
|
-
|
12
|
-
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
13
|
-
|
14
|
-
s.platform = Gem::Platform::RUBY
|
15
|
-
s.add_runtime_dependency "jekyll", "~> 3.5"
|
16
|
-
s.add_runtime_dependency "jekyll-seo-tag", "~> 2.0"
|
17
|
-
end
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = "lets-collab"
|
5
|
+
s.version = "0.1.2"
|
6
|
+
s.license = "MIT"
|
7
|
+
s.authors = ["Tina May"]
|
8
|
+
s.email = ["tina@instituteofcode.com"]
|
9
|
+
s.homepage = "https://letscollab.io"
|
10
|
+
s.summary = "Lets Collab Media Kit Template"
|
11
|
+
|
12
|
+
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
13
|
+
|
14
|
+
s.platform = Gem::Platform::RUBY
|
15
|
+
s.add_runtime_dependency "jekyll", "~> 3.5"
|
16
|
+
s.add_runtime_dependency "jekyll-seo-tag", "~> 2.0"
|
17
|
+
end
|