session.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  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. position: relative;
  56. }
  57. #sessionNotesIcon{
  58. position: absolute;
  59. top: -10px;
  60. left: -15px;
  61. font-size: 35px;
  62. font-weight: bold;
  63. color: var(--accent);
  64. }
  65. #sessionNotesText{
  66. display: flex;
  67. flex-direction: column;
  68. position: absolute;
  69. top: 25%;
  70. left: 2%;
  71. height: 35%;
  72. min-height: 275px;
  73. width: 95%;
  74. max-width: 750px;
  75. padding: 25px 10px;
  76. box-shadow: 0 0 5px var(--text);
  77. background: var(--gray);
  78. z-index: 2;
  79. }
  80. #sessionNotesText textarea{
  81. height: 100%;
  82. width: 100%;
  83. font-size: 18px;
  84. margin-bottom: 15px;
  85. color: var(--gray);
  86. padding: 5px;
  87. }
  88. #noSessionText{
  89. color: white;
  90. font-size: 18px;
  91. }
  92. #sessionPage h1{
  93. text-align: center;
  94. text-decoration: underline;
  95. margin-top: 15px;
  96. }
  97. .weightSet{
  98. padding: 10px 5px;
  99. border: 1px solid var(--accent);
  100. border-radius: 25px;
  101. margin: 15px 0;
  102. position: relative;
  103. }
  104. .weightSetDelete{
  105. background: linear-gradient(to right, var(--accent), var(--primary));
  106. border: none;
  107. position: absolute;
  108. top: 5px;
  109. right: 5px;
  110. font-size: 22px;
  111. border-radius: 50%;
  112. height: 35px;
  113. width: 35px;
  114. cursor: pointer;
  115. color: var(--dark);
  116. }
  117. .weightSet h3{
  118. margin-bottom: 15px;
  119. }
  120. .weightSet label{
  121. display: flex;
  122. flex-direction: column;
  123. margin-bottom: 10px;
  124. }
  125. .weightSet input{
  126. font-size: 22px;
  127. padding: 5px;
  128. color: var(--gray);
  129. }
  130. #nextSessionBtn, #finishSessionBtn{
  131. width: 100%;
  132. max-width: 550px;
  133. padding: 15px 0;
  134. margin-top: 25px;
  135. }
  136. @media screen and (min-width: 750px){
  137. #sessionNotesText{
  138. left: calc(50% - 375px);
  139. }
  140. }