session.css 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. #sessionPage{
  2. flex-direction: column;
  3. justify-content: flex-start;
  4. padding-bottom: 25px;
  5. }
  6. #sessionButtonBox{
  7. display: flex;
  8. flex-direction: column;
  9. position: absolute;
  10. top: 15px;
  11. right: 15px;
  12. }
  13. #sessionNotesBtn{
  14. margin-bottom: 5px;
  15. }
  16. #sessionNotesText{
  17. display: flex;
  18. flex-direction: column;
  19. position: absolute;
  20. top: 25%;
  21. left: 2%;
  22. height: 35%;
  23. width: 95%;
  24. padding: 25px 10px;
  25. box-shadow: 0 0 5px var(--text);
  26. background: var(--gray);
  27. z-index: 2;
  28. }
  29. #sessionNotesText textarea{
  30. height: 100%;
  31. width: 100%;
  32. font-size: 18px;
  33. margin-bottom: 15px;
  34. color: var(--gray);
  35. padding: 5px;
  36. }
  37. #noSessionText{
  38. color: white;
  39. font-size: 18px;
  40. }
  41. #sessionPage h1{
  42. text-align: center;
  43. text-decoration: underline;
  44. }
  45. .weightSet{
  46. padding: 10px 5px;
  47. border: 1px solid var(--accent);
  48. border-radius: 25px;
  49. margin: 15px 0;
  50. position: relative;
  51. }
  52. .weightSetDelete{
  53. background: linear-gradient(to right, var(--accent), var(--primary));
  54. border: none;
  55. position: absolute;
  56. top: 5px;
  57. right: 5px;
  58. font-size: 22px;
  59. border-radius: 50%;
  60. height: 35px;
  61. width: 35px;
  62. cursor: pointer;
  63. color: var(--dark);
  64. }
  65. .weightSet h3{
  66. margin-bottom: 15px;
  67. }
  68. .weightSet label{
  69. display: flex;
  70. flex-direction: column;
  71. margin-bottom: 10px;
  72. }
  73. .weightSet input{
  74. font-size: 22px;
  75. padding: 5px;
  76. color: var(--gray);
  77. }
  78. #nextSessionBtn, #finishSessionBtn{
  79. width: 100%;
  80. max-width: 550px;
  81. padding: 15px 0;
  82. margin-top: 25px;
  83. }