home.css 584 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. align-items: center;
  22. width: 100%;
  23. }
  24. #workoutList button{
  25. margin: 15px 0;
  26. padding: 15px 0;
  27. width: 100%;
  28. max-width: 750px;
  29. }
  30. #homeLogout{
  31. position: absolute;
  32. bottom: 15px;
  33. left: 0;
  34. width: 100%;
  35. text-align: center;
  36. }