Commit 381abe0438a964d69aa38e17121a415a77daf020

Authored by Edmar Moretti
1 parent af973428

Conclusão da página com lista de utilitarios

Showing 1 changed file with 16 additions and 6 deletions   Show diff stats
utilitarios/index.php
... ... @@ -6,7 +6,15 @@ include "../init/head.php";
6 6 ?>
7 7 <style>
8 8 .list-group .list-group-separator::before{
9   - width: 100%;
  9 + width: calc(100% - 45px);
  10 +}
  11 +.list-group-item-heading{
  12 + line-height: 2;
  13 + left: 5px;
  14 + margin-left: 45px;
  15 +}
  16 +.list-group{
  17 + margin: auto;
10 18 }
11 19 </style>
12 20 <body style="background-color: #eeeeee; padding-top: 55px;">
... ... @@ -31,15 +39,17 @@ include &quot;../init/head.php&quot;;
31 39 <div class="col-sm-12 hidden">
32 40 <!-- Template para criacao dos quadros ver index.js -->
33 41 <div class="panel panel-default">
34   - <div class="panel-body">
35   - <div class="list-group" id="botoesTpl">
36   - <div class="list-group-item">
  42 + <div class="panel-body" id="botoesTpl">
  43 + <div class="list-group" >
  44 + <div class="row-action-primary">
37 45 <div class="bs-component btn-group-sm pull-left">
38 46 <a class="btn btn-primary btn-fab" href="{{{link}}}"> <i class="material-icons">launch</i>
39 47 </a>
40 48 </div>
41   - <h4>
42   - &nbsp;<a href="{{{link}}}">{{{corpo}}} </a>
  49 + </div>
  50 + <div class="row-content">
  51 + <h4 class="list-group-item-heading">
  52 + <a href="{{{link}}}">{{{corpo}}} </a>
43 53 </h4>
44 54 </div>
45 55 <div class="list-group-separator"></div>
... ...