session.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. }
  46. .weightSet{
  47. padding: 10px 5px;
  48. border: 1px solid var(--accent);
  49. border-radius: 25px;
  50. margin: 15px 0;
  51. position: relative;
  52. }
  53. .weightSetDelete{
  54. background: linear-gradient(to right, var(--accent), var(--primary));
  55. border: none;
  56. position: absolute;
  57. top: 5px;
  58. right: 5px;
  59. font-size: 22px;
  60. border-radius: 50%;
  61. height: 35px;
  62. width: 35px;
  63. cursor: pointer;
  64. color: var(--dark);
  65. }
  66. .weightSet h3{
  67. margin-bottom: 15px;
  68. }
  69. .weightSet label{
  70. display: flex;
  71. flex-direction: column;
  72. margin-bottom: 10px;
  73. }
  74. .weightSet input{
  75. font-size: 22px;
  76. padding: 5px;
  77. color: var(--gray);
  78. }
  79. #nextSessionBtn, #finishSessionBtn{
  80. width: 100%;
  81. max-width: 550px;
  82. padding: 15px 0;
  83. margin-top: 25px;
  84. }