Licitator 1.0
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.

139 lines
3.8 KiB

5 years ago
  1. /* EJERCICIO 12 */
  2. .exercise12n .wrappertest .content > section .inner{
  3. grid-gap: 0 15px;
  4. }
  5. .exercise12n .wrappertest .content > section .inner .form-row{
  6. margin-bottom: 15px;
  7. }
  8. .exercise12n .wrappertest .content > section .inner .form-row.ex12n_photo{
  9. grid-column: 1 / 3;
  10. }
  11. .exercise12n .wrappertest .content > section .inner .form-row.ex12n_photo .elfinder_button{
  12. align-self: flex-start;
  13. }
  14. .exercise12n #stage_tab{
  15. border: none;
  16. grid-column: 1 / 3;
  17. }
  18. .exercise12n #stage_tab_content{
  19. border: 1px solid #ddd;
  20. padding: 15px;
  21. background: #fff;
  22. grid-column: 1 / 3;
  23. }
  24. .exercise12n #stage_tab_content .tab-pane.active{
  25. display: grid;
  26. grid-template-columns: 1fr 1fr;
  27. grid-gap: 15px;
  28. }
  29. .exercise12n #stage_tab_content .tab-pane.active .form-row{
  30. margin-bottom: 0;
  31. }
  32. .exercise12n #stage_tab_content .tab-pane.active .ex12n_stage-btn-wrapper{
  33. grid-column: 1 / 3;
  34. display: flex;
  35. }
  36. .exercise12n #stage_tab_content .tab-pane.active .ex12n_stage-btn-wrapper .btn{
  37. background: #505050;
  38. color: #fff;
  39. font-size: 1.5rem;
  40. line-height: 1.5rem;
  41. border: none;
  42. padding: 10px 20px;
  43. font-weight: 500;
  44. border-radius: 0;
  45. margin-right: 10px;
  46. }
  47. .exercise12n #stage_tab_content .tab-pane.active .ex12n_stage-btn-wrapper .boton-add{
  48. background: #00a65a;
  49. }
  50. .exercise12n #stage_tab_content .tab-pane.active .ex12n_stage-btn-wrapper .boton-add:hover,
  51. .exercise12n #stage_tab_content .tab-pane.active .ex12n_stage-btn-wrapper .boton-add:focus,
  52. .exercise12n #stage_tab_content .tab-pane.active .ex12n_stage-btn-wrapper .boton-add:active{
  53. background: #118c53;
  54. }
  55. .exercise12n #stage_tab_content .tab-pane.active .ex12n_stage-btn-wrapper .boton-remove{
  56. background: #c40000;
  57. }
  58. .exercise12n #stage_tab_content .tab-pane.active .ex12n_stage-btn-wrapper .boton-remove:hover,
  59. .exercise12n #stage_tab_content .tab-pane.active .ex12n_stage-btn-wrapper .boton-remove:focus,
  60. .exercise12n #stage_tab_content .tab-pane.active .ex12n_stage-btn-wrapper .boton-remove:active{
  61. background: #a30101;
  62. }
  63. .exercise12n .ex12n_customers{
  64. display: none;
  65. }
  66. .exercise12n .informe-12-btn{
  67. margin-bottom: 15px;
  68. grid-column: 1 / 3;
  69. display: flex;
  70. justify-content: flex-end;
  71. }
  72. .exercise12n .informe-12-btn button{
  73. background: #00a65a;
  74. color: #fff;
  75. font-size: 1.5rem;
  76. line-height: 1.5rem;
  77. border: none;
  78. padding: 10px 20px;
  79. font-weight: 500;
  80. border-radius: 0;
  81. }
  82. .exercise12n .informe-12-btn button:hover,
  83. .exercise12n .informe-12-btn button:focus,
  84. .exercise12n .informe-12-btn button:active{
  85. background: #118c53;
  86. }
  87. /* FIN EJERCICIO 12 */