newWorkout.css 597 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #newWorkoutPage{
  2. flex-direction: column;
  3. justify-content: flex-start;
  4. position: relative;
  5. padding-top: 95px;
  6. overflow-y: auto;
  7. }
  8. #newWorkoutBack{
  9. position: absolute;
  10. top: 15px;
  11. right: 15px;
  12. }
  13. #newWorkoutPage label{
  14. display: flex;
  15. flex-direction: column;
  16. font-size: 22px;
  17. }
  18. #newWorkoutPage input{
  19. font-size: 22px;
  20. color: var(--gray);
  21. padding: 5px;
  22. }
  23. .newWorkoutInputs{
  24. width: 100%;
  25. max-width: 550px;
  26. }
  27. #newWorkoutName{
  28. margin-bottom: 35px;
  29. }
  30. #newWorkoutFinish{
  31. margin-top: 35px;
  32. width: 100%;
  33. max-width: 550px;
  34. }