Commit ac53ef96df8c93e13165cff7b5b68672b92c1673

Authored by Valessio Brito
1 parent 9bc52ae1

Footer with Logo Gov.br

ConfJuvApp/scss/_footer.scss 0 → 100644
... ... @@ -0,0 +1,19 @@
  1 +#footer-3confjuv {
  2 +
  3 + padding-top: 200px;
  4 +
  5 + p {
  6 + color: $white;
  7 + }
  8 +
  9 + .brasilgov {
  10 + display: inline-block;
  11 + margint-top: 15px;
  12 + width: 153px;
  13 + height: 48px;
  14 + background: transparent url(../img/brasil.png?1) center center no-repeat;
  15 + background-size: 153px 48px;
  16 + }
  17 +
  18 +}
  19 +
... ...
ConfJuvApp/scss/ionic.app.scss
... ... @@ -31,6 +31,7 @@ $unit: 11px;
31 31 @import "main";
32 32 @import "login";
33 33 @import "header";
  34 +@import "footer";
34 35 @import "proposal_list";
35 36 @import "proposal";
36 37 @import "sidebar";
... ...
ConfJuvApp/www/html/_footer.html 0 → 100644
... ... @@ -0,0 +1,17 @@
  1 +<div id="footer-3confjuv">
  2 + <p class="text-center">
  3 + Conselho Nacional de<br />
  4 + <strong>Juventude</strong>
  5 + </p>
  6 + <p class="text-center">
  7 + Secretaria Nacional de<br />
  8 + <strong>Juventude</strong>
  9 + </p>
  10 + <p class="text-center">
  11 + Secretaria-geral da<br />
  12 + <strong>Presidência da República</strong>
  13 + </p>
  14 + <p class="text-center">
  15 + <span class="brasilgov"></span>
  16 + </p>
  17 +</div>
... ...
ConfJuvApp/www/img/brasil.png 0 → 100644

3.79 KB

ConfJuvApp/www/index.html
... ... @@ -40,6 +40,9 @@
40 40 <ion-side-menu side="right" is-enabled="true" expose-aside-when="large">
41 41 <ng-include src="'html/_right_sidebar.html?10'"></ng-include>
42 42 </ion-side-menu>
  43 +
  44 + <ng-include src="'html/_footer.html?12'"></ng-include>
  45 +
43 46 </ion-side-menus>
44 47  
45 48 <button class="button button-float" ng-show="loggedIn" ng-click="openCreateProposalForm()">
... ...