Skip to content

Commit 03a7d6c

Browse files
author
ryllari.marques
committed
Merge branch 'develop' of github.com:pythonNordeste/pyne2020 into sponsors
2 parents 0190e87 + b7c30d7 commit 03a7d6c

File tree

2 files changed

+27
-21
lines changed

2 files changed

+27
-21
lines changed

css/style.css

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,28 @@
1010
padding: 0 15px;
1111
}
1212

13+
.black-content {
14+
color: black;
15+
}
16+
1317
#index-banner {
1418
background-image: url("../images/banner.png"); /* The image used */
1519
background-color: #ffffff; /* Used if the image is unavailable */
16-
background-position: center; /* Center the image */
20+
background-position: bottom; /* Center the image */
1721
background-repeat: no-repeat; /* Do not repeat the image */
1822
background-size: contain; /* Resize the background image to cover the entire container */
1923
}
2024

2125
.navbar-img-logo {
2226
height: 48px;
23-
margin-right: 0.7rem;
27+
margin-right: 10px;
28+
margin-top: 5px;
2429
}
2530

2631
.fa{
2732
color: #000;
2833
}
34+
2935
footer .fa{
3036
color: #fff;
3137
}

index.html

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,11 @@
1717
<div class="navbar-fixed scrollspy">
1818
<nav class="grey lighten-5">
1919
<div class="nav-wrapper container">
20+
<img class="navbar-img-logo hide-on-small-only" src="./images/jangada.png">
2021
<a href="/" class="brand-logo black-text">
21-
<div class="valign-wrapper">
22-
<img class="navbar-img-logo" src="./images/jangada.png">
23-
<span>PyNE 2020</span>
24-
</div>
22+
PyNE 2020
2523
</a>
26-
<a href="#" data-activates="mobile-demo" class="button-collapse"><i class="mdi-navigation-menu"></i></a>
24+
<a href="#" data-activates="mobile-demo" class="button-collapse"><i class="black-content mdi-navigation-menu"></i></a>
2725
<ul class="right hide-on-med-and-down">
2826
<li><a class="black-text" href="#evento">Evento</a></li>
2927
<li><a class="black-text" href="#local">Local</a></li>
@@ -32,33 +30,36 @@
3230
</ul>
3331

3432
<ul class="side-nav" id="mobile-demo">
35-
<li><a class="black-text" href="#evento">Evento</a></li>
36-
<li><a class="black-text" href="#local">Local</a></li>
37-
<li><a class="black-text" href="#patrocinio">Patrocínio</a></li>
38-
<li><a class="black-text" href="#">Código de Conduta</a></li>
33+
<li><a class="black-text sidenav-close dismiss-menu" href="#evento">Evento</a></li>
34+
<li><a class="black-text dismiss-menu" href="#local">Local</a></li>
35+
<li><a class="black-text dismiss-menu" href="#patrocinio">Patrocínio</a></li>
36+
<li><a class="black-text dismiss-menu" href="#">Código de Conduta</a></li>
3937
</ul>
4038
</div>
4139
</nav>
4240
</div>
4341

4442
<!-- Main Section -->
4543
<div class="section no-pad-bot grey lighten-5" id="index-banner">
46-
<div class="container">
44+
<div id="banner-content" class="container">
4745
<br><br>
48-
<h1 class="header grey-text text-darken-3">Python <br> Nordeste 2020</h1>
4946
<div class="row">
47+
<h1 class="header grey-text text-darken-3">Python<br>Nordeste 2020</h1>
5048
<h5 class="header col s12 light">Fortaleza, Ceará | 17, 18 e 19 de Julho</h5>
5149
</div>
52-
<br><br>
53-
<br><br>
5450
<div class="row center">
5551
<a href="#evento" class="btn-floating btn-large waves-effect waves-light grey darken-3"><i class="fa fa-angle-double-down"></i></a>
5652
</div>
5753
<br><br>
54+
<div class="hide-on-small-only">
55+
<br><br>
56+
<br><br>
57+
<br><br>
58+
<br><br>
59+
</div>
5860
</div>
5961
</div>
6062

61-
6263
<!-- Mailist Section -->
6364
<div class="container">
6465
<div class="section">
@@ -127,7 +128,7 @@ <h4>
127128

128129
<!-- About Section -->
129130
<div class="parallax-container" style="height: auto">
130-
<div class="parallax"><img src="images/pyne2019.jpg" style="background-size: cover; botton"></div>
131+
<div class="parallax"><img src="images/pyne2019.jpg" style="background-size: cover"></div>
131132
<div class="container">
132133
<div id="evento" class="section white-text">
133134
<br><br>
@@ -250,10 +251,9 @@ <h5 class="white-text">Contato</h5>
250251
<script src="js/materialize.js"></script>
251252
<script src="js/init.js"></script>
252253
<script>
253-
$(document).ready(function(){
254-
$('.parallax').parallax();
255-
});
254+
$(document).ready(function(){
255+
$('.parallax').parallax();
256+
});
256257
</script>
257-
258258
</body>
259259
</html>

0 commit comments

Comments
 (0)