Skip to content

Commit c5a0193

Browse files
committed
adding bubbles
1 parent db714a4 commit c5a0193

File tree

4 files changed

+80
-0
lines changed

4 files changed

+80
-0
lines changed

_layouts/vertical.html

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{% include head.html %}
2+
3+
<body class="{{ page.layout }}">
4+
5+
{% include header.html %}
6+
7+
<section class="hero-container {{ page.colour }}">
8+
<div class="hero-inner grid">
9+
<h1 class="hero-title col-1-1">{% if page.hero-title %}{{page.hero-title}}{% else %}{{page.title}}{% endif %}</h1>
10+
{% if page.hero-subtitle %}
11+
<p class="hero-summary col-1-1">{{page.hero-subtitle}}</p>
12+
{% endif %}
13+
{% if page.hero-btn %}
14+
<a href="{{page.hero-btn-url}}" class="btn btn-primary btn-block" data-sr="scale up 20%, vF 0">{{page.hero-btn}}</a>
15+
{% endif %}
16+
</div>
17+
<div class="grid">
18+
<div class="vert-bubble"></div>
19+
<div class="vert-bubble"></div>
20+
<div class="vert-bubble"></div>
21+
</div>
22+
</section>
23+
24+
{% include footer.html %}
25+
26+
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
27+
<script>window.jQuery || document.write('<script src="js/vendor/jquery-2.1.1.min.js""><\/script>')</script>
28+
<script type="text/javascript" src="{{ site.baseurl }}/js/vendor/jquery.lazyload.min.js"></script>
29+
<script type="text/javascript" src="{{ site.baseurl }}/js/vendor/scrollReveal.min.js"></script>
30+
<script type="text/javascript" src="{{ site.baseurl }}/js/main.js"></script>
31+
<script>
32+
jQuery(function ($) {
33+
$("img.lazy").lazyload({
34+
threshold : 600
35+
});
36+
$("#gif1").attr("src","second.jpg");
37+
});
38+
</script>
39+
<script>
40+
41+
</script>
42+
43+
<!-- /scripts-->
44+
45+
</body>
46+
</html>

_sass/pages/_vertical.scss

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
//===============================================================================
2+
// Vertical
3+
//===============================================================================
4+
.vert-bubble {
5+
background: $pink;
6+
height: 100px;
7+
width: 100px;
8+
display: inline-block;
9+
border-radius: 400px;
10+
border: solid darken($pink, 10%) 8px;
11+
}

css/main.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,9 @@
7373
// INVITE: Styles for the invite pages
7474
@import "pages/_invite.scss";
7575

76+
// INVITE: Styles for the invite pages
77+
@import "pages/_vertical.scss";
78+
7679
// IE 8
7780
// ===================================================
7881
@import "shared/_ie.scss";

vertical-health.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
layout: vertical
3+
title: Health
4+
permalink: /health/
5+
group: nav
6+
colour: aqua
7+
8+
## Hero Content
9+
hero-title: Health
10+
hero-subtitle: At Pebble, we specialise in building solutions for Health. We believe there’s an exciting transformation ahead driven by three main themes
11+
hero-btn:
12+
hero-btn-url:
13+
14+
15+
16+
---
17+
18+
19+
20+
Using iterative approaches, shortening feedback loops and identifying success metrics at each step, we provide critical advice on how to supercharge technology delivery and generate novel solutions to business problems.

0 commit comments

Comments
 (0)