session.css 1.6 KB

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