Skip to content

Commit a0b067c

Browse files
committed
updating brandbook with the new brand, remocing old images, adding .DS_Store into .gitignore
1 parent aaf58f2 commit a0b067c

16 files changed

+43
-42
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
_site
22
.sass-cache
3+
images/.DS_Store

_layouts/post.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
{% include sidebar.html %}
77
</aside>
88
<article class="post-content">
9-
<h2 class="post-title">{{ page.title }}</h2>
9+
<h1 class="post-title">{{ page.title }}</h1>
1010
{{ content }}
1111
</article>
1212

_posts/2015-05-05-brandbook.md

Lines changed: 27 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -5,43 +5,48 @@ title: "Brandbook"
55

66
Welcome! This one page document is a short introduction to the codebar brand. It is very much in progress and is meant to give you a high level overview about the do’s and dont’s of the codebar brand.
77

8-
### Assets
8+
## Assets
99

10-
All of our assets can be downloaded from our [github page](https://github.com/codebar/assets)
10+
All of our assets can be downloaded from our [assets github page](https://github.com/codebar/assets).
1111

1212
### Logo
1313

14-
Logotype
14+
Our logo, mark and wordmark comes in two colorways. Additionally, our logo comes in vertical and horizontal versions.
1515

16-
![codebar logotype](/images/logotype.png)
16+
#### Logo
1717

18-
Logos
18+
![codebar logo](/images/codebar-logo.png)
19+
![codebar logo restricted](/images/codebar-logo-restricted.png)
1920

20-
![codebar logo 1](/images/codebar-logo-160-001.png)
21-
![codebar logo 2](/images/codebar-logo-160-002.png)
22-
![codebar logo 3](/images/codebar-logo-160-003.png)
21+
#### Horizontal version of the logo
2322

24-
Additionally, each chapter has it's own logo with the name of the city in all three combinations:
23+
Used in cases where a horizontal logo fits better, e.g.: site headers, etc.
2524

26-
![codebar Manchester logo 1](/images/codebar-manchester-160-001.png)
27-
![codebar Manchester logo 2](/images/codebar-manchester-160-002.png)
28-
![codebar Manchester logo 3](/images/codebar-manchester-160-003.png)
25+
![codebar logo horizontal version](/images/codebar-logo-horizontal.png)
2926

30-
### Colors
27+
#### The mark
3128

32-
<div class="color yellow">#f8af3c</div>
33-
<div class="color purple">#a2539a</div>
34-
<div class="color blue">#afdef8</div>
35-
<div class="color green">#47ad4c</div>
36-
<div class="color orange">#ea5b28</div>
29+
Use the mark when you have to represent codebar and only have a small area to do so. The mark works best as profile pictures, avatars, icons, etc.
3730

38-
### Font & typography
31+
![codebar mark in two colorways](/images/codebar-mark.png)
3932

40-
For our logos and logotype we use a free webfont called Monda. You can download Monda from github [here](https://github.com/vernnobile/mondaFont)
33+
#### Chapter logos
4134

42-
If you need to edit any of our assets, please use this font by downloading it and including it in your font library.
35+
Additionally, each chapter has it's own logo with the name of the city in it:
4336

44-
### Language
37+
![codebar Brighton logo](/images/codebar-logo-chapter-horizontal.png)
38+
39+
## Colors
40+
41+
<div class="color blue">#4bafff</div>
42+
<div class="color green">#19f3be</div>
43+
<div class="color magenta">#ff036a</div>
44+
45+
## Font & typography
46+
47+
The wordmark is a modified version of codebar written in Gotham Light. You can download this font from the internet. If you need to edit any of our assets, please use this font by downloading it and including it in your font library.
48+
49+
## Language
4550

4651
We ALWAYS write codebar with a lowercase c, as opposed to a capital C. This is true even if codebar is the first word in a sentence.
4752

css/main.css

Lines changed: 14 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
body {
22
padding: 0;
33
margin: 0;
4-
font-family: proxima-nova,Helvetica,Arial,sans-serif;
4+
font-family: proxima-nova, Helvetica, Arial, sans-serif;
55
font-weight: 300;
66
}
77

88
header {
9-
font-family: "Gabriela",serif;
109
color: #000;
1110
padding: 20px 0 0;
1211
border-bottom: 1px solid #333;
@@ -15,6 +14,7 @@ header {
1514

1615
h1 {
1716
font-size: 2.5rem;
17+
color: #000;
1818
}
1919

2020
a {
@@ -55,7 +55,7 @@ aside {
5555
}
5656

5757
.post-content a {
58-
color: #a2539a;
58+
color: #4bafff;
5959
}
6060

6161
nav ul {
@@ -105,36 +105,31 @@ tbody tr:hover td{
105105

106106
.codebar-link i {
107107
margin-right: 4px;
108-
color: #a2539a;
108+
color: #4bafff;
109109
}
110110

111111
.codebar-link a {
112-
color: #a2539a;
112+
color: #4bafff;
113113
}
114114

115115
/**
116116
* Brandbook
117117
*/
118118
.color {
119-
width: 80px;
120-
height: 80px;
121-
display: inline-block;
119+
width: 33%;
120+
height: 100px;
121+
float: left;
122122
text-align: center;
123123
color: #fff;
124-
line-height: 80px;
125-
}
126-
.color.yellow {
127-
background: #f8af3c;
128-
}
129-
.color.purple {
130-
background: #a2539a;
124+
line-height: 100px;
125+
margin-bottom: 20px;
131126
}
132127
.color.blue {
133-
background: #afdef8;
128+
background: #4bafff;
134129
}
135130
.color.green {
136-
background: #47ad4c;
131+
background: #19f3be;
137132
}
138-
.color.orange {
139-
background: #ea5b28;
133+
.color.magenta {
134+
background: #ff036a;
140135
}

images/codebar-logo-160-001.png

-10.1 KB
Binary file not shown.

images/codebar-logo-160-002.png

-9.64 KB
Binary file not shown.

images/codebar-logo-160-003.png

-7.09 KB
Binary file not shown.
10.9 KB
Loading

images/codebar-logo-horizontal.png

9.48 KB
Loading

images/codebar-logo-restricted.png

7.39 KB
Loading

0 commit comments

Comments
 (0)