editWorkout.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #editWorkoutPage{
  2. flex-direction: column;
  3. }
  4. #editWorkoutExercises{
  5. width: 100%;
  6. }
  7. .editWorkoutExercise{
  8. display: flex;
  9. justify-content: space-between;
  10. align-items: center;
  11. padding: 0 5px;
  12. height: 75px;
  13. width: 100%;
  14. max-width: 550px;
  15. border-radius: 5px;
  16. border: 2px solid white;
  17. margin: 15px 0;
  18. }
  19. .workoutMove{
  20. display: flex;
  21. flex-direction: column;
  22. flex-basis: 40px;
  23. flex-grow: 0;
  24. }
  25. .workoutMove button{
  26. background: linear-gradient(to right, var(--accent), var(--primary), var(--accent));
  27. cursor: pointer;
  28. border: none;
  29. background-clip: text;
  30. color: transparent;
  31. font-size: 40px;
  32. line-height: 35px;
  33. }
  34. .editWorkoutExercise p{
  35. font-size: 25px;
  36. flex-basis: 40px;
  37. flex-grow: 1;
  38. text-align: center;
  39. }
  40. .editWorkoutDelete{
  41. background: linear-gradient(to right, var(--accent), var(--primary));
  42. border: none;
  43. font-size: 22px;
  44. border-radius: 50%;
  45. height: 35px;
  46. width: 35px;
  47. flex-basis: 35px;
  48. flex-grow: 0;
  49. cursor: pointer;
  50. color: var(--dark);
  51. }
  52. #editWorkoutBack{
  53. width: 100%;
  54. max-width: 550px;
  55. padding: 15px 0;
  56. }