session.css 2.6 KB

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