home.css 537 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. #installPwa{
  14. position: absolute;
  15. top: 65px;
  16. right: 15px;
  17. }
  18. #workoutList{
  19. display: flex;
  20. flex-direction: column;
  21. width: 100%;
  22. }
  23. #workoutList button{
  24. margin: 15px 0;
  25. padding: 15px 0;
  26. width: 100%;
  27. }
  28. #homeLogout{
  29. position: absolute;
  30. bottom: 15px;
  31. left: 0;
  32. width: 100%;
  33. text-align: center;
  34. }