session.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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. #sessionExercisesBtn{
  14. position: absolute;
  15. top: 60px;
  16. left: 15px;
  17. }
  18. #sessionExercisesList{
  19. flex-direction: column;
  20. justify-content: center;
  21. position: fixed;
  22. top: 0;
  23. left: 0;
  24. height: 100vh;
  25. width: 100vw;
  26. background: var(--dark);
  27. overflow-y: auto;
  28. z-index: 3;
  29. }
  30. #closeExerciseList{
  31. background: linear-gradient(to right, var(--accent), var(--primary));
  32. border: none;
  33. position: absolute;
  34. top: 15px;
  35. right: 15px;
  36. font-size: 22px;
  37. border-radius: 50%;
  38. height: 35px;
  39. width: 35px;
  40. cursor: pointer;
  41. color: var(--dark);
  42. }
  43. #sessionExercisesList .exerciseListButton{
  44. align-self: center;
  45. background: linear-gradient(to right, var(--accent), var(--primary), var(--accent));
  46. background-clip: text;
  47. color: transparent;
  48. border: none;
  49. font-size: 25px;
  50. margin: 10px 0;
  51. cursor: pointer;
  52. }
  53. #sessionNotesBtn{
  54. margin-bottom: 5px;
  55. }
  56. #sessionNotesText{
  57. display: flex;
  58. flex-direction: column;
  59. position: absolute;
  60. top: 25%;
  61. left: 2%;
  62. height: 35%;
  63. min-height: 275px;
  64. width: 95%;
  65. padding: 25px 10px;
  66. box-shadow: 0 0 5px var(--text);
  67. background: var(--gray);
  68. z-index: 2;
  69. }
  70. #sessionNotesText textarea{
  71. height: 100%;
  72. width: 100%;
  73. font-size: 18px;
  74. margin-bottom: 15px;
  75. color: var(--gray);
  76. padding: 5px;
  77. }
  78. #noSessionText{
  79. color: white;
  80. font-size: 18px;
  81. }
  82. #sessionPage h1{
  83. text-align: center;
  84. text-decoration: underline;
  85. margin-top: 15px;
  86. }
  87. .weightSet{
  88. padding: 10px 5px;
  89. border: 1px solid var(--accent);
  90. border-radius: 25px;
  91. margin: 15px 0;
  92. position: relative;
  93. }
  94. .weightSetDelete{
  95. background: linear-gradient(to right, var(--accent), var(--primary));
  96. border: none;
  97. position: absolute;
  98. top: 5px;
  99. right: 5px;
  100. font-size: 22px;
  101. border-radius: 50%;
  102. height: 35px;
  103. width: 35px;
  104. cursor: pointer;
  105. color: var(--dark);
  106. }
  107. .weightSet h3{
  108. margin-bottom: 15px;
  109. }
  110. .weightSet label{
  111. display: flex;
  112. flex-direction: column;
  113. margin-bottom: 10px;
  114. }
  115. .weightSet input{
  116. font-size: 22px;
  117. padding: 5px;
  118. color: var(--gray);
  119. }
  120. #nextSessionBtn, #finishSessionBtn{
  121. width: 100%;
  122. max-width: 550px;
  123. padding: 15px 0;
  124. margin-top: 25px;
  125. }