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.

79 lines
1.3 KiB

5 years ago
  1. {# sin dependencias #}
  2. .exercise-btn-moves-group{
  3. position: fixed;
  4. bottom: 0;
  5. right: 0;
  6. width: 100%;
  7. z-index: 999;
  8. background: #ecf0f5;
  9. display: grid;
  10. grid-gap: 15px;
  11. grid-template-columns: auto auto 1fr auto auto;
  12. align-items: center;
  13. padding: 10px;
  14. border-top: solid 2px #d4dae2;
  15. justify-items: flex-start;
  16. }
  17. .exercise-btn-moves-group a{
  18. color: #fff;
  19. font-size: 1.5rem;
  20. line-height: 1.5rem;
  21. border: none;
  22. padding: 10px 20px;
  23. font-weight: 500;
  24. border-radius: 0;
  25. background: #333333;
  26. }
  27. .exercise-btn-moves-group a:hover, .exercise-btn-moves-group a:focus, .exercise-btn-moves-group a:active{
  28. background: #4d4d4d;
  29. color: #fff;
  30. }
  31. .exercise-btn-moves-group .btn-prev{
  32. }
  33. .exercise-btn-moves-group .btn-prev.ocultar{
  34. padding: 0;
  35. margin: 0;
  36. width: 0;
  37. height: 0;
  38. }
  39. .exercise-btn-moves-group .btn-save{
  40. }
  41. .exercise-btn-moves-group .btn-next{
  42. }
  43. .exercise-btn-moves-group .mensaje{
  44. display: flex;
  45. justify-content: center;
  46. align-items: center;
  47. width: 100%;
  48. font-size: 2rem;
  49. line-height: 2rem;
  50. color: #e74f00;
  51. font-weight: 700;
  52. }