Skip to content

Commit a83e922

Browse files
committed
Inserido texto de apresentação do GDG
1 parent 805d516 commit a83e922

File tree

6 files changed

+92
-15
lines changed

6 files changed

+92
-15
lines changed

_includes/banner.html

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,9 @@
33
<div class="container">
44
<div class="row center">
55
<img src="/assets/img/gdglogo.png" class="logo-gdg" alt="google developer group">
6-
<h4 class="header yellow-text">Google Developer Group</h4>
7-
<h1 class="header yellow-text">Salvador</h1>
6+
<!-- <h4 class="header yellow-text">Google Developer Group</h4>
7+
<h1 class="header yellow-text">Salvador</h1> -->
88
</div>
9-
<!-- <div class="row center">
10-
<a href="#" class="btn-large light-blue lighten-1">Código de Conduta</a>
11-
</div> -->
129
</div>
1310
</div>
1411
<div class="parallax">

_includes/header.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div class="navbar-fixed">
33
<nav class="light-blue lighten-1" role="navigation">
44
<div class="nav-wrapper container">
5-
<a id="logo-container" href="/" class="brand-logo">#{{ site.title_min }}</a>
5+
<a id="logo-container" href="/" class="brand-logo yellow-text">#{{ site.title_min }}</a>
66
<ul class="right hide-on-med-and-down">
77
{% for page in site.pages %}
88
<li><a href="{{ site.url_dev }}{{ page.url }}">{{ page.title }}</a></li>

_src/sass/_variables.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
$bg: #fcfcfc;
2+
$blue-gray: #263238;
13
$primary-color: #4285F4;
24
$second-color: #FBBC05;
35

_src/sass/main.scss

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
@import "_variables.scss";
22

3+
4+
body{
5+
background-color: $bg;
6+
}
7+
38
.parallax-container {
49
min-height: 80vh;
510
line-height: 0;
@@ -8,7 +13,7 @@
813
}
914

1015
.logo-gdg{
11-
width: 7rem;
16+
width: 12rem;
1217
}
1318

1419
.color-overlay {
@@ -28,4 +33,34 @@
2833

2934
.footer-copyright{
3035
border-top: 1px solid #b0bec5;
36+
}
37+
38+
.strike {
39+
display: block;
40+
text-align: center;
41+
overflow: hidden;
42+
white-space: nowrap;
43+
color: $blue-gray;
44+
padding: 50px 50px 50px 50px;
45+
> span{
46+
position: relative;
47+
display: inline-block;
48+
&:before{
49+
right: 100%;
50+
margin-right: 15px;
51+
}
52+
&:after{
53+
left: 100%;
54+
margin-left: 15px;
55+
}
56+
}
57+
}
58+
59+
.strike > span:before, .strike > span:after {
60+
content: "";
61+
position: absolute;
62+
top: 50%;
63+
width: 9999px;
64+
height: 1px;
65+
background: $blue-gray;
3166
}

assets/css/main.css

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1+
body {
2+
background-color: #fcfcfc; }
3+
14
.parallax-container {
25
min-height: 80vh;
36
line-height: 0;
47
height: auto;
58
color: rgba(255, 255, 255, 0.9); }
69

710
.logo-gdg {
8-
width: 7rem; }
11+
width: 12rem; }
912

1013
.color-overlay {
1114
position: absolute;
@@ -22,3 +25,28 @@
2225

2326
.footer-copyright {
2427
border-top: 1px solid #b0bec5; }
28+
29+
.strike {
30+
display: block;
31+
text-align: center;
32+
overflow: hidden;
33+
white-space: nowrap;
34+
color: #263238;
35+
padding: 50px 50px 50px 50px; }
36+
.strike > span {
37+
position: relative;
38+
display: inline-block; }
39+
.strike > span:before {
40+
right: 100%;
41+
margin-right: 15px; }
42+
.strike > span:after {
43+
left: 100%;
44+
margin-left: 15px; }
45+
46+
.strike > span:before, .strike > span:after {
47+
content: "";
48+
position: absolute;
49+
top: 50%;
50+
width: 9999px;
51+
height: 1px;
52+
background: #263238; }

index.html

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,24 @@
22
layout: default
33
---
44
<div class="home">
5-
<!-- <div class="row">
6-
{% for post in site.posts %}
7-
<div class="col s4">
5+
<div class="container">
6+
<div class="row">
7+
<div class="center">
8+
9+
<div class="strike">
10+
<span class="blue-grey-text darken-4"><h4>GDG Salvador</h4></span>
11+
</div>
12+
<p class="flow-text blue-grey-text">O Google Developer Group(GDG) Salvador é o primeiro grupo do nordeste brasileiro a surgir.
13+
Nosso objetivo é difundir as tecnologias do Google em nossa cidade, através de eventos técnicos, palestras, cursos, oficinas e etc!</p>
14+
<p class="blue-grey-text flow-text">Esteja sempre atento às publicações do nosso grupo para ficar por dentro dos próximos eventos!
15+
<p class="blue-grey-text flow-text"><span class="red-text darken-2">Aviso: GDG Salvador é um grupo independente; nossas atividades e opiniões aqui expressadas não são, de forma nenhuma, associadas ao Google.</p></span>
16+
</p>
17+
</div>
18+
</div>
19+
</div>
20+
<!-- <div class="row">
21+
{% for post in site.posts %}
22+
<div class="col s4">
823
<div class="card blue-grey darken-1">
924
<div class="card-content white-text">
1025
<span class="card-title yellow-text">{{ post.title }}</span>
@@ -15,7 +30,7 @@
1530
<a href="#">Inscrições</a>
1631
</div>
1732
</div>
18-
</div>
19-
{% endfor %}
20-
</div> -->
21-
</div>
33+
</div>
34+
{% endfor %}
35+
</div> -->
36+
</div>

0 commit comments

Comments
 (0)