session.css 945 B

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