editWorkout.css 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. #editWorkoutPage{
  2. flex-direction: column;
  3. position: relative;
  4. }
  5. #editWorkoutAddExercise{
  6. position: absolute;
  7. top: 5px;
  8. right: 5px;
  9. }
  10. #editWorkoutExercises{
  11. width: 100%;
  12. }
  13. .editWorkoutExercise{
  14. display: flex;
  15. justify-content: space-between;
  16. align-items: center;
  17. padding: 0 5px;
  18. height: 75px;
  19. width: 100%;
  20. max-width: 550px;
  21. border-radius: 5px;
  22. border: 2px solid white;
  23. margin: 15px 0;
  24. }
  25. .workoutMove{
  26. display: flex;
  27. flex-direction: column;
  28. flex-basis: 40px;
  29. flex-grow: 0;
  30. }
  31. .workoutMove button{
  32. background: linear-gradient(to right, var(--accent), var(--primary), var(--accent));
  33. cursor: pointer;
  34. border: none;
  35. background-clip: text;
  36. color: transparent;
  37. font-size: 40px;
  38. line-height: 35px;
  39. }
  40. .editWorkoutExercise p{
  41. font-size: 25px;
  42. flex-basis: 40px;
  43. flex-grow: 1;
  44. text-align: center;
  45. }
  46. .editWorkoutDelete{
  47. background: linear-gradient(to right, var(--accent), var(--primary));
  48. border: none;
  49. font-size: 22px;
  50. border-radius: 50%;
  51. height: 35px;
  52. width: 35px;
  53. flex-basis: 35px;
  54. flex-grow: 0;
  55. cursor: pointer;
  56. color: var(--dark);
  57. }
  58. #newExerciseInput{
  59. font-size: 22px;
  60. color: var(--gray);
  61. padding-left: 5px;
  62. }
  63. #newExerciseContainer{
  64. width: 100%;
  65. max-width: 550px;
  66. margin-bottom: 25px;
  67. }
  68. #newExerciseSubmit{
  69. border: none;
  70. background: linear-gradient(to right, var(--accent), var(--primary));
  71. background-clip: text;
  72. color: transparent;
  73. font-size: 40px;
  74. font-weight: bold;
  75. margin-left: 15px;
  76. }
  77. #editWorkoutBack{
  78. width: 100%;
  79. max-width: 550px;
  80. padding: 15px 0;
  81. }