lets-collab 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/_layouts/post.html CHANGED
@@ -1,3 +1,3 @@
1
- ---
2
- layout: default
3
- ---
1
+ ---
2
+ layout: default
3
+ ---
data/_sass/base.scss CHANGED
@@ -1,282 +1,300 @@
1
- * {
2
- box-sizing: border-box;
3
- margin:0;
4
- padding:0;
5
- }
6
-
7
- img {
8
- max-width: 100%;
9
- }
10
-
11
- div {
12
- position: relative;
13
- }
14
-
15
- /* Utility Classes */
16
-
17
- .vertical-align {
18
- display: flex;
19
- align-items: center;
20
- }
21
-
22
- .center {
23
- text-align: center;
24
- }
25
-
26
- .margin-top {
27
- margin-top: 5vh;
28
- }
29
-
30
- .no-padding {
31
- padding: 0;
32
- }
33
-
34
- /* Universal Styles */
35
-
36
- body {
37
- font-family: 'Lato', sans-serif;
38
- color: rgb(90,90,90);
39
- }
40
- h2 {
41
- color: #e74c3c;
42
- font-family: 'Playfair Display', serif;
43
- font-weight: normal;
44
- font-size: 2rem;
45
- margin-top: 1rem;
46
- margin-bottom: 0.5rem;
47
- text-align:center;
48
- }
49
-
50
- h3 {
51
- font-weight: normal;
52
- font-family: 'Playfair Display', serif;
53
- }
54
-
55
- a {
56
- color: #e74c3c;
57
- padding-bottom: 2px;
58
- border-bottom: 1px solid #e74c3c;
59
- text-decoration: none;
60
- position: relative;
61
- top:0;
62
- transition: 0.3s;
63
- }
64
-
65
- a:hover {
66
- color: rgb(120,120,120);
67
- border-color: rgb(120,120,120);
68
- top:2px;
69
- position: relative;
70
- }
71
-
72
- p {
73
- line-height: 1.4;
74
- margin: 0.8rem 0;
75
- font-weight: 300;
76
- text-align: center;
77
- }
78
-
79
- p span {
80
- font-weight: bold;
81
- padding-right: 10px;
82
- }
83
-
84
-
85
- ul {
86
- list-style: inside;
87
- }
88
-
89
- li {
90
- margin: 0.5rem 0;
91
- font-weight: 300;
92
- }
93
-
94
- hr {
95
- border: none;
96
- border-bottom: 3px solid #e74c3c;
97
- width: 50px;
98
- margin:1rem auto 3rem;
99
- }
100
-
101
- section {
102
- padding: 8vh 10%;
103
- }
104
-
105
- section:nth-child(odd) {
106
- background-color: rgb(250,250,252);
107
- }
108
-
109
-
110
- /* Banner */
111
-
112
- .banner {
113
- padding: 0;
114
- margin: 0;
115
- min-height:100vh;
116
- }
117
-
118
- .banner .inner {
119
- background-color: rgb(60,60,65);
120
- color: white;
121
- position: relative;
122
- text-align:center;
123
- padding: 2vh 5% 2vh 5%;
124
- }
125
-
126
- .bg {
127
- background-position: center;
128
- background-size: cover;
129
- padding-bottom:30%;
130
- }
131
- .banner .bg {
132
- min-height: 80vh;
133
- }
134
-
135
- .pin-bottom {
136
- position: absolute;
137
- padding: 1rem;
138
- margin: 0;
139
- bottom: 0;
140
- letter-spacing: 2px;
141
- width: 100%;
142
- left:0;
143
- right:0;
144
- }
145
-
146
- .banner h2 {
147
- margin: 0.5rem;
148
- color: white;
149
- }
150
-
151
-
152
- /* Featured */
153
-
154
- section.featured {
155
- background-color: #e63f4f;
156
- color: white;
157
- text-align: center;
158
- }
159
-
160
- .featured a,
161
- .featured h2 {
162
- color: white;
163
- border-color: white;
164
- }
165
-
166
- .featured hr {
167
- margin: auto;
168
- border-color: white;
169
- }
170
-
171
- .banner-color {
172
- background-color:rgb(90,90,95);
173
- }
174
-
175
- /* Stats Section */
176
- span.info {
177
- font-size: 3rem;
178
- display: block;
179
- }
180
- span.info-subtitle {
181
- text-transform: uppercase;
182
- letter-spacing: 1px;
183
- font-size: 0.8rem;
184
- }
185
-
186
- .stats-section h3 {
187
- margin-top: 1rem;
188
- }
189
-
190
- /* Gallery */
191
- .gallery-section [class*=col] {
192
- padding: 1px;
193
- }
194
-
195
- .gallery-item {
196
- padding-bottom: 100%;
197
- background-size: cover;
198
- }
199
- .caption {
200
- background-color: rgb(240,240,240);
201
- margin: 0;
202
- padding: 0.5rem;
203
- }
204
- /* testimonials */
205
- .testimonial {
206
- padding: 0 4% 0 4%;
207
- text-align: left;
208
- margin-top: 1rem;
209
- border-left: 1px solid rgb(200,200,200);
210
- }
211
-
212
- .testimonial p {
213
- text-align: left;
214
- }
215
-
216
- /* Brand partnerships logos */
217
- .logo-item {
218
- padding-bottom: 60%;
219
- background-size: contain;
220
- background-repeat: no-repeat;
221
- }
222
- /* Footer */
223
- footer {
224
- padding:1rem;
225
- }
226
-
227
- footer p {
228
- line-height: 1.5;
229
- font-weight: normal;
230
- color: rgb(120,120,125);
231
- font-size: 0.8rem;
232
- }
233
- footer a {
234
- border: none;
235
- }
236
- footer a:hover {
237
- top:0;
238
- }
239
-
240
- .subtle {
241
- color: rgb(120,120,125);
242
- font-weight: lighter;
243
- }
244
-
245
- .subtle a {
246
- color: rgb(120,120,125);
247
- font-weight: normal;
248
- }
249
-
250
-
251
- /* Responsive */
252
- .mob-show {
253
- display:none;
254
- }
255
-
256
- /* banners */
257
- @media(max-width:768px) {
258
- section {
259
- padding: 5vh 5%;
260
- }
261
- .banner {
262
- min-height: 0;
263
- }
264
- .logo {
265
- max-height: 15vh;
266
- }
267
- .vertical-align {
268
- display: block;
269
- }
270
- .mob-hide {
271
- display: none!important;
272
- }
273
- .mob-show {
274
- display:block;
275
- }
276
- /* stats */
277
- .stats-section [class*='col'] {
278
- padding: 1rem;
279
- border: 1px solid rgb(245,245,245);
280
- }
281
-
282
- } /* end of media query */
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 */