session.css 676 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #sessionPage{
  2. flex-direction: column;
  3. justify-content: flex-start;
  4. padding-bottom: 25px;
  5. }
  6. #noSessionText{
  7. color: white;
  8. font-size: 18px;
  9. }
  10. #sessionPage h1{
  11. text-align: center;
  12. text-decoration: underline;
  13. }
  14. .weightSet{
  15. padding: 10px 5px;
  16. border: 1px solid var(--accent);
  17. border-radius: 25px;
  18. margin: 15px 0;
  19. }
  20. .weightSet h3{
  21. margin-bottom: 15px;
  22. }
  23. .weightSet label{
  24. display: flex;
  25. flex-direction: column;
  26. margin-bottom: 10px;
  27. }
  28. .weightSet input{
  29. font-size: 22px;
  30. padding: 5px;
  31. color: var(--gray);
  32. }
  33. #nextSessionBtn, #finishSessionBtn{
  34. width: 100%;
  35. padding: 15px 0;
  36. margin-top: 25px;
  37. }