You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
1.2 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
  2. body {
  3. background-color: #ededed;
  4. font-family: 'Roboto', sans-serif;
  5. color: #656565;
  6. font-size: .95rem;
  7. }
  8. .bg-yellow {
  9. background-color: #f0c30f;
  10. }
  11. .btn {
  12. border-radius: 100px;
  13. padding: .375rem 1.5rem;
  14. }
  15. input {
  16. padding: 10px 22px;
  17. border-radius: 5px;
  18. border-color: transparent;
  19. }
  20. header.header {
  21. padding: 20px 0;
  22. box-shadow: inset 0 -1px 0 0 #bbb9b0;
  23. border-bottom: solid 5px #fff;
  24. margin-bottom: 25px;
  25. }
  26. .btn-secondary {
  27. color: #fff;
  28. background-color: #dd392b;
  29. border-color: #dd392b;
  30. }
  31. .text-blue {
  32. color: #06468d;
  33. }
  34. table.table tr th.border-right {
  35. border-right: 2px solid #dee2e6;
  36. }
  37. table.table thead th {
  38. border-top: none;
  39. }
  40. table.table tbody {
  41. border-bottom: 2px solid #dee2e6;
  42. }
  43. table.table tr.salir:hover {
  44. background-color: #fff;
  45. }
  46. table.table tr.table-responsive {
  47. display: table-row;
  48. }
  49. .fa.fa-circle {
  50. color: #ededed;
  51. }
  52. .fa.fa-plus {
  53. color: #06468d;
  54. }
  55. .fa-stack {
  56. cursor: pointer;
  57. }
  58. @media (min-width: 576px) {
  59. .container-fluid {
  60. width: 83%;
  61. }
  62. }