editWorkout.css 1.8 KB

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