colores.php 1006 B

1234567891011121314151617181920212223242526
  1. <?php
  2. require_once("../../include/constantes.php");
  3. require_once("../include/charts_util.php");
  4. ?>
  5. <html>
  6. <head>
  7. <title>GEMA - Facultad de Ingeniería</title>
  8. <meta charset="utf-8">
  9. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  10. <link rel="stylesheet" href="../../css/bootstrap-ulsa.min.css" type="text/css">
  11. <link rel="stylesheet" href="../../css/indivisa.css" type="text/css">
  12. <link rel="stylesheet" href="../../css/sgi.css?rand=<?php echo rand();?>" type="text/css">
  13. <link rel="stylesheet" href="../../css/fa_all.css" type="text/css">
  14. </head>
  15. <body>
  16. <ul class="list-group list-group-horizontal">
  17. <?php
  18. foreach($colorMatFull_arr as $color){
  19. ?>
  20. <li class="list-group-item" style="font-size: 200%; color: <?php echo $color;?>"><?php echo $ICO_LG["circulo"];?></li>
  21. <?php
  22. }
  23. ?>
  24. </ul>
  25. </body>
  26. </html>