templates/ipa/botones_pua.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" media="screen">
  5.         
  6.         <style>
  7.             .button {
  8.               border-radius: 8px;
  9.               background-color: #00ac7c;
  10.               border: none;
  11.               color: #FFFFFF;
  12.               /*text-align: center;*/
  13.               font-size: 28px;
  14.               padding: 20px;
  15.               width: 253px; /*253*/
  16.               transition: all 0.5s;
  17.               cursor: pointer;
  18.               /*margin: 5px;*/
  19.             }
  20.             .button span {
  21.               cursor: pointer;
  22.               display: inline-block;
  23.               position: relative;
  24.               transition: 0.5s;
  25.             }
  26.             .button span:after {
  27.               content: '\00bb';
  28.               position: absolute;
  29.               opacity: 0;
  30.               top: 0;
  31.               right: -20px;
  32.               transition: 0.5s;
  33.             }
  34.             .button:hover span {
  35.               padding-right: 25px;
  36.             }
  37.             .button:hover span:after {
  38.               opacity: 1;
  39.               right: 0;
  40.             }
  41.         </style>
  42.     </head>
  43.     <body>
  44.         <div class="container-fluid">
  45.             
  46.             <div class="row">
  47.                 <div class="col-xs-12 col-md-4">
  48.                     <a href="http://institutodelagua.chubut.gov.ar/es/40/procedimiento">
  49.                         <button class="button">
  50.                             <h3 class="glyphicon glyphicon-align-left" aria-hidden="true"></h3>
  51.                             <br>
  52.                             <span>Procedimiento</span> 
  53.                             
  54.                         </button>                    
  55.                     </a>
  56.                 </div>
  57.                 <div class="col-xs-12 col-md-4">
  58.                     <a href="http://institutodelagua.chubut.gov.ar/es/55/documentacion-necesaria">
  59.                         <button class="button">
  60.                             <h3 class="glyphicon glyphicon-paperclip" aria-hidden="true"></h3>
  61.                             <span>Documentacion Necesaria</span> 
  62.                         </button>
  63.                     </a>
  64.                 </div>
  65.                  <!--<div class="col-xs-12 col-md-4">
  66.                     <a href="http://institutodelagua.chubut.gov.ar/es/56/preguntas-frecuentes">
  67.                         <button class="button">
  68.                             <h3 class="glyphicon glyphicon-question-sign" aria-hidden="true"></h3>
  69.                             <span>Preguntas Frecuentes</span> 
  70.                         </button>
  71.                     </a>
  72.                 </div> -->
  73.            </div>
  74.         </div>
  75.     </body>
  76. </html>