Skip to content

Commit

Permalink
Add help page and additional branding
Browse files Browse the repository at this point in the history
  • Loading branch information
stewartadam committed Sep 20, 2015
1 parent 1265570 commit 3d1ffa8
Show file tree
Hide file tree
Showing 11 changed files with 332 additions and 10 deletions.
49 changes: 42 additions & 7 deletions css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,27 @@ label .normal {
}

footer {
width: 30%;
border-top: 1px solid #bbb;
margin: 2em 0;
padding-top: 0.5em;
width: 375px;
color: #ccc;
margin-bottom: 3em;
}

footer hr {
margin: 2.5em 0 0.5em 0;
padding-top: 0.5em;
border-top: 1px solid #bbb;
}

body > .wrapper {
background: linear-gradient(0deg, rgba(69, 150, 73, 0.9), rgba(69, 150, 73, 0.6) 100%);
footer .logo {
background-image: url('../images/cc.svg');
background-size: 385px;
background-repeat: no-repeat;
background-position: -21px 0px;
padding-top: 265px;
}

body {
background: linear-gradient(0deg, rgba(69, 150, 73, 1), rgba(69, 150, 73, 0.5) 100%);
min-height: 100%;
}
body > .wrapper > .container {
Expand All @@ -104,5 +116,28 @@ body > .wrapper > .container {
}

.tile-section > label {
margin-bottom: 1em
margin-bottom: 1em;
}

.comps {
display: flex;
flex-direction: row;
}
.comps-outer.container {
padding: 0;
}
.comps .comp {
text-align: center;
font-size: 1.7em;
position: relative;
}
.comps .comp img {
width: 285px;
margin-bottom: 1em;
}
.comps .arrows {
font-size: 0.85em;
bottom: 9px;
right: -18px;
position: absolute;
}
Binary file added images/cc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
253 changes: 253 additions & 0 deletions images/cc.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/iPhone Comps_01.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/iPhone Comps_02.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/iPhone Comps_03.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/iPhone Comps_04.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@
<div id="render-navbar"></div>
<div id="render-content" class="clearfix"></div>
<footer>
Copyright &copy; 2015 Collab<strong>Create</strong>
<div class="logo"></div>
<hr />
Copyright &copy; 2015 <em>Collab<strong>Create</strong></em>
</footer>
</div> <!-- /container -->
</div>
Expand Down
2 changes: 1 addition & 1 deletion templates/create.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<input type="file" id="media">
<p class="help-block">The first image uploaded will be used as the profile picture</p>
</div>
<button type="submit" class="btn btn-default">Create</button>
<button type="submit" class="btn btn-default">Create!</button>
</form>
</div>

Expand Down
32 changes: 32 additions & 0 deletions templates/help.handlebars
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<div class="comps-outer container">
<div class="comps">
<div class="comp">
<img src="images/iPhone Comps_01.png" /><br />
Open App
<div class="arrows">
<em class="glyphicon glyphicon-menu-right"></em><em class="glyphicon glyphicon-menu-right"></em>
</div>
</div>

<div class="comp">
<img src="images/iPhone Comps_02.png" /><br />
Browse Projects
<div class="arrows">
<em class="glyphicon glyphicon-menu-right"></em><em class="glyphicon glyphicon-menu-right"></em>
</div>
</div>

<div class="comp">
<img src="images/iPhone Comps_03.png" /><br />
Not Interested
<div class="arrows">
<em class="glyphicon glyphicon-menu-right"></em><em class="glyphicon glyphicon-menu-right"></em>
</div>
</div>

<div class="comp">
<img src="images/iPhone Comps_04.png" /><br />
Collaborate!
</div>
</div>
</div>
2 changes: 1 addition & 1 deletion templates/navbar.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#home">Collab<strong>Create</strong></a>
<a class="navbar-brand" href="#home"><em>Collab<strong>Create</strong></em></a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
Expand Down

0 comments on commit 3d1ffa8

Please sign in to comment.