Skip to content

Commit 881206a

Browse files
committed
Redesign header to incorporate new logo
1 parent 1ffeb57 commit 881206a

File tree

3 files changed

+68
-57
lines changed

3 files changed

+68
-57
lines changed

_layouts/header.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
---
44

55
<header class="small">
6-
<div class="inner">
7-
<h1><a href="/">Europe<br> Code<br> Week<br> <span>2014</span></a></h1>
8-
<h2>11th &mdash; 17th October <a href="https://twitter.com/search?q=%23codeEU&amp;f=realtime">#codeEU</a></h2>
6+
<div class="inner row">
7+
<h1><a href="/">CodeWeek.EU</a></h1>
8+
<h2>11th &mdash; 17th October &bull; <a href="https://twitter.com/search?q=%23codeEU&amp;f=realtime">#codeEU</a></h2>
99

1010
{% include nav.ext %}
1111
</div>

_layouts/home.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
---
44

55
<section id="intro">
6-
<div class="inner">
7-
<header>
8-
<h1>Europe<br> Code<br> Week<br> <span>2014</span></h1>
6+
<div class="row inner">
7+
<header class="col-md-4">
8+
<h1>CodeWeek.EU</h1>
99
<h2>11th &mdash; 17th October <a href="https://twitter.com/search?q=%23codeEU&amp;f=realtime">#codeEU</a></h2>
1010
</header>
1111

1212
{% include nav.ext %}
1313

14-
<div id="intro-description">
14+
<div id="intro-description" class="col-md-8">
1515
<p>All around Europe, people are making apps, websites and lots of other things by learning to code.</p>
1616
<p>Join them at one of many events and clubs taking place when Code Week returns this year.</p>
1717

stylesheets/core.css

+61-50
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
@import url(//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css);
22
@import url(http://fonts.googleapis.com/css?family=Carrois+Gothic);
33

4+
/*
5+
Code Week Blue: #4489ca
6+
*/
7+
48
body {
59
background: #f2f8ff;
610
font-family: 'Carrois Gothic', Helvetica, Arial, sans-serif;
@@ -22,35 +26,43 @@ body {
2226
.button, a.button,
2327
a.button:link, a.button:visited {
2428
display: inline-block;
25-
background: #0f6abc;
29+
background: #4489ca;
2630
text-decoration: none;
2731
color: #fff;
2832
padding: 5px 24px;
2933
text-shadow: #083e6f 0px 1px 1px;
3034
box-shadow: #d0d0d0 0px 2px 2px;
35+
border-top: 2px solid #4489ca;
36+
border-bottom: 2px solid transparent;
3137
}
3238

3339
a.button:hover {
3440
background: #4e832f;
41+
border-top-color: #4e832f;
3542
text-shadow: #31521e 0px 1px 1px;
3643
}
3744

3845
a.button:active {
39-
border-top: 2px solid #f2f8ff;
46+
border-top-color: #f2f8ff;
47+
border-bottom-color: #4e832f;
48+
padding-top: 7px;
49+
padding-bottom: 3px;
4050
box-shadow: none;
4151
}
4252

4353
section {
44-
font-size: 20px;
45-
line-height: 32px;
46-
padding: 25px 0;
54+
font-size: 18px;
55+
line-height: 28px;
56+
padding: 10px 0;
57+
margin: 0;
4758
}
4859
section p {
49-
padding: 10px 0;
60+
padding: 8px 0;
61+
margin: 0;
5062
}
5163
section h1 {
5264
font-size: 34px;
53-
padding: 30px 0 25px;
65+
padding: 15px 0;
5466
text-transform: uppercase;
5567
}
5668

@@ -65,56 +77,55 @@ a:hover, a:active {
6577
/* Header */
6678

6779
header.small {
68-
background: #0068bf url('/images/header.jpg') no-repeat center center;;
80+
background: #4489ca;
6981
display: block;
7082
color: #fff;
71-
height: 145px;
83+
height: 80px;
7284
}
7385
header.small .inner {
7486
overflow: hidden;
7587
padding: 0;
7688
margin: 0 auto 20px;
7789
position: relative;
90+
height: 80px;
7891
}
7992
header.small h1 {
80-
font-size: 20px;
81-
text-transform: uppercase;
82-
letter-spacing: 2px;
83-
text-shadow: #002b4f 0px 1px 1px;
84-
padding: 0;
85-
line-height: 26px;
93+
margin: 0;
94+
padding: 23px 0 0;
8695
float: left;
8796
}
8897
header.small h1 a, header.small h1 a:link, header.small h1 a:visited {
8998
display: block;
90-
text-decoration: none;
91-
width: 150px;
92-
color: #fff;
93-
}
94-
header.small h1 a span, header.small h1 a:link span, header.small h1 a:visited span {
95-
color: #bcdbff;
99+
height: 35px;
100+
width: 240px;
101+
padding: 0;
102+
text-indent: -9999px;
103+
background: url('/images/small-logo.png') no-repeat center left;
96104
}
97105
header.small h2 {
98106
float: right;
99107
text-align: right;
100108
font-size: 15px;
101109
line-height: 22px;
110+
margin: 15px 0 0;
102111
}
103112

104-
header.small h2 a, header.small h2 a:link, header.small h2 a:visited {
105-
margin-top: 4px;
113+
header h2 a, header h2 a:link, header h2 a:visited {
114+
color: #fff;
115+
}
116+
header h2 a:hover, header h2 a:active {
117+
color: #bcdbff;
106118
}
107-
108119

109120
/* Intro */
110121

111122
#intro {
112-
height: 655px;
123+
height: 500px;
113124
padding: 0;
114-
background: #0068bf url('/images/europe.jpg') no-repeat center center;
125+
background: #4489ca;
115126
color: #fff;
116-
font-size: 32px;
117-
line-height: 55px;
127+
font-size: 28px;
128+
line-height: 49px;
118129
font-weight: 400;
119130
margin-bottom: 15px;
120131
}
@@ -128,25 +139,21 @@ header.small h2 a, header.small h2 a:link, header.small h2 a:visited {
128139

129140
#intro header {
130141
display: block;
131-
float: left;
132142
color: #fff;
133143
text-align: left;
134-
width: 360px;
135144
}
136145

137-
#intro #intro-description {
138-
float: right;
139-
width: 600px;
146+
#intro header h1 {
147+
margin: 0;
148+
padding: 0;
140149
}
141150

142151
#intro header h1 {
143-
font-size: 54px;
144-
font-weight: 400;
145-
text-transform: uppercase;
146-
letter-spacing: 2px;
147-
text-shadow: #002b4f 0px 1px 1px;
148-
padding: 20px 0;
149-
line-height: 60px;
152+
display: block;
153+
height: 250px;
154+
width: 200px;
155+
text-indent: -9999px;
156+
background: url('/images/intro-logo.png') no-repeat top left;
150157
}
151158

152159
#intro header h1 span {
@@ -155,34 +162,39 @@ header.small h2 a, header.small h2 a:link, header.small h2 a:visited {
155162

156163
#intro header h2 {
157164
padding: 10px 0;
158-
font-size: 28px;
165+
font-size: 24px;
159166
}
160167

161-
header h2 a, header h2 a:link, header h2 a:visited {
168+
#intro header h2 a {
162169
display: block;
163170
margin-top: 10px;
164-
color: #fff;
165171
}
166-
header h2 a:hover, header h2 a:active {
167-
color: #bcdbff;
172+
173+
#intro p:first-of-type {
174+
padding-top: 0;
168175
}
169176

170177
#intro .button, #intro a.button,
171178
#intro a.button:link, #intro a.button:visited {
172179
background: #fff;
173180
color: #000;
174181
padding: 5px 24px;
175-
text-shadow: #f6f6f6 0px 1px 1px;
176-
box-shadow: #083e6f 0px 2px 2px;
182+
text-shadow: #fafafa 0px 1px 1px;
183+
box-shadow: #3875af 0px 2px 2px;
184+
border-top: 2px solid #fff;
177185
}
178186

179187
#intro a.button:hover {
180188
background: #bcdbff;
181189
text-shadow: #a0bde0 0px 1px 1px;
190+
border-color: #bcdbff;
182191
}
183192

184193
#intro a.button:active {
185-
border-top: 2px solid #0f6abc;
194+
border-top: 2px solid #4489ca;
195+
border-bottom: 2px solid #bcdbff;
196+
padding-top: 7px;
197+
padding-bottom: 3px;
186198
box-shadow: none;
187199
}
188200

@@ -196,7 +208,6 @@ nav {
196208
}
197209
nav ul {
198210
text-align: right;
199-
/* padding: 10px 0;*/
200211
}
201212
nav ul li {
202213
display: inline-block;
@@ -231,7 +242,7 @@ nav ul li a, nav ul li a:link, nav ul li a:visited {
231242
/* Footer */
232243

233244
footer {
234-
background: #0f6abc;
245+
background: #4489ca;
235246
color: #fff;
236247
margin-top: 40px;
237248
}

0 commit comments

Comments
 (0)