home.css 465 B

12345678910111213141516171819202122232425262728293031323334
  1. #homePage{
  2. flex-direction: column;
  3. position: relative;
  4. }
  5. #homePage h1{
  6. text-decoration: underline;
  7. }
  8. #homeNewWorkout{
  9. position: absolute;
  10. top: 15px;
  11. right: 15px;
  12. }
  13. #workoutList{
  14. display: flex;
  15. flex-direction: column;
  16. width: 100%;
  17. }
  18. #workoutList button{
  19. margin: 15px 0;
  20. padding: 15px 0;
  21. width: 100%;
  22. }
  23. #homeLogout{
  24. position: absolute;
  25. bottom: 15px;
  26. left: 0;
  27. width: 100%;
  28. text-align: center;
  29. }