Skip to content

Commit e737d4b

Browse files
committed
Finalizado header
1 parent 086c405 commit e737d4b

File tree

5 files changed

+66
-40
lines changed

5 files changed

+66
-40
lines changed

_includes/header.html

+33-27
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,35 @@
1-
<header>
2-
<nav class="navbar navbar-static-top navbar-purple">
3-
<div class="container">
4-
<div class="navbar-header">
5-
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#collapse" aria-expanded="false">
6-
<span class="sr-only">Toggle navigation</span>
7-
<span class="icon-bar"></span>
8-
<span class="icon-bar"></span>
9-
<span class="icon-bar"></span>
10-
</button>
11-
<a class="navbar-brand" href="{{ site.baseurl }}/">{{ site.title }}</a>
12-
</div>
1+
<nav class="navbar navbar-static-top navbar-purple">
2+
<div class="container">
3+
<div class="navbar-header">
4+
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#collapse" aria-expanded="false">
5+
<span class="sr-only">Toggle navigation</span>
6+
<span class="icon-bar"></span>
7+
<span class="icon-bar"></span>
8+
<span class="icon-bar"></span>
9+
</button>
10+
<a class="navbar-brand" href="{{ site.baseurl }}/">{{ site.title }}</a>
11+
</div>
1312

14-
<div class="collapse navbar-collapse" id="collapse">
15-
<ul class="nav navbar-nav">
16-
{% for page in site.pages %}
17-
{% if page.title %}
18-
<li><a href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a></li>
19-
{% endif %}
20-
{% endfor %}
21-
</ul>
22-
<ul class="nav navbar-nav navbar-right">
23-
<li><a href="http://www.meetup.com/pt/PHPSC-Floripa/">Reuniões</a></li>
24-
<li><a href="https://phpsc-slackin.herokuapp.com/">Slack</a></li>
25-
</ul>
26-
</div><!-- /.navbar-collapse -->
27-
</div><!-- /.container -->
28-
</nav>
13+
<div class="collapse navbar-collapse" id="collapse">
14+
<ul class="nav navbar-nav">
15+
{% for page in site.pages %}
16+
{% if page.title %}
17+
<li><a href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a></li>
18+
{% endif %}
19+
{% endfor %}
20+
</ul>
21+
<ul class="nav navbar-nav navbar-right">
22+
<li><a href="http://www.meetup.com/pt/PHPSC-Floripa/">Reuniões</a></li>
23+
<li><a href="https://phpsc-slackin.herokuapp.com/">Slack</a></li>
24+
</ul>
25+
</div><!-- /.navbar-collapse -->
26+
</div><!-- /.container -->
27+
</nav>
28+
29+
<header class="header">
30+
<div class="container">
31+
<a href="{{ site.baseurl }}/">
32+
<img src="{{ site.baseurl }}/img/logo_branca.png" class="logo" alt="{{ site.title }}">
33+
</a>
34+
</div><!-- /.container -->
2935
</header>

_sass/_layout.scss

+32-13
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,37 @@
44
/**
55
* Site header
66
*/
7-
.site-header {
8-
min-height: 500px;
97

10-
background: transparent url(../img/capa_grupo_face.png) no-repeat center center;
8+
.header {
9+
position: relative;
10+
height: 300px;
11+
background: {
12+
image: url("../img/elephants.jpg");
13+
repeat: no-repeat;
14+
position: center;
15+
size: cover;
16+
}
1117

12-
-webkit-background-size: cover;
13-
-moz-background-size: cover;
14-
-o-background-size: cover;
15-
background-size: cover;
18+
.container {
19+
position: relative;
20+
z-index: 20;
21+
}
1622

17-
// Positioning context for the mobile navigation icon
18-
position: relative;
23+
&:before {
24+
position: absolute;
25+
z-index: 10;
26+
content: "";
27+
top: 0;
28+
left: 0;
29+
right: 0;
30+
bottom: 0;
31+
background-color: $blue;
32+
opacity: 0.5;
33+
}
1934

20-
@include media-query($on-palm) {
21-
min-height: 200px;
22-
background-position: top right;
35+
.logo {
36+
height: 200px;
37+
margin-top: 50px;
2338
}
2439
}
2540

@@ -283,7 +298,7 @@
283298

284299
.fork-me-on-github img {
285300
position: absolute;
286-
top: 0;
301+
top: 51px;
287302
right: 0;
288303
z-index: 1500;
289304
border: 0;
@@ -292,6 +307,10 @@
292307
}
293308
}
294309

310+
.navbar {
311+
margin-bottom: 0;
312+
}
313+
295314
.navbar-purple {
296315
background-color: #fff;
297316

_sass/_vars.scss

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
$purple: #662D91;
2+
$blue: #1B6E8D;
23

34
//== Media queries breakpoints
45
//

img/elephants.jpg

386 KB
Loading

img/logo_branca.png

25.1 KB
Loading

0 commit comments

Comments
 (0)