File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1414 }
1515 }
1616}
17+
18+ .absolute-center { @include absolute-center ; }
19+ .text-center { text-align : center ; }
Original file line number Diff line number Diff line change 22$navbar-height : 80px ;
33$navbar-default-bg : transparent ;
44$navbar-default-border : transparent ;
5+ $brand-primary : #1C3B56 ;
6+ $font-family-sans-serif : ' Open Sans' , sans-serif ;
Original file line number Diff line number Diff line change 1+ @mixin absolute-center {
2+ position : absolute ;
3+ top : 50% ;
4+ left : 50% ;
5+ transform : translate (-50% , -50% );
6+ }
Original file line number Diff line number Diff line change 33@import " ../bootstrap/stylesheets/_bootstrap" ;
44
55@import " ./_overrides" ;
6+ @import " ./_mixins" ;
67
78@import " ./_base" ;
9+
10+ @import " ./page-specific/_index" ;
Original file line number Diff line number Diff line change 1+
2+ #main-header {
3+ min-height : 50vh ;
4+ background-image : url (' /static/img/cover.jpg' );
5+ background-size : cover ;
6+ background-position : bottom ;
7+ position : relative ;
8+
9+ h1 , p {
10+ color : #fff ;
11+ span { color : $brand-primary ; }
12+ }
13+
14+ h1 { font-weight : bold ; }
15+
16+ p { text-shadow : 0px 2px 2px $brand-primary ; }
17+ }
Original file line number Diff line number Diff line change 1111 < title > {% block title %}{% endblock %}</ title >
1212 < meta name ="description " content ="{% block description %}{% endblock %} ">
1313
14+ < link href ="https://fonts.googleapis.com/css?family=Open+Sans " rel ="stylesheet ">
1415 {% stylesheet "main" %}
1516
1617 <!--[if lt IE 9]>
Original file line number Diff line number Diff line change 11{% extends "base.html" %}
22
33{% block content %}
4+
5+ < div id ="main-header " class ="jumbotron ">
6+ < div class ="container ">
7+ < div class ="absolute-center ">
8+ < div class ="text-center ">
9+ < h1 > Python < span class ="color "> Rio de Janeiro</ span > </ h1 >
10+ < p > A comunidade que reúne grupos de usuários em todo Rio de Janeiro</ p >
11+ < div class ="clearfix "> </ div >
12+ < a href ="#sobre-sessao " class ="btn btn-default btn-lg page-scroll "> Saiba Mais</ a >
13+ </ div >
14+ </ div >
15+ </ div >
16+ </ div >
17+
418 {% for evento in eventos %}
519 < h1 >
620 {{ evento.data }}, {{ evento.local }} - {{ evento.cidade }}
You can’t perform that action at this time.
0 commit comments