session.css 865 B

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