sessionHistory.css 664 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #sessionHistoryPage{
  2. flex-direction: column;
  3. }
  4. #sessionHistoryPage h1{
  5. text-align: center;
  6. text-decoration: underline;
  7. }
  8. #sessionHistoryClose{
  9. background: linear-gradient(to right, var(--accent), var(--primary));
  10. border: none;
  11. position: absolute;
  12. top: 15px;
  13. right: 15px;
  14. font-size: 22px;
  15. border-radius: 50%;
  16. height: 35px;
  17. width: 35px;
  18. cursor: pointer;
  19. color: var(--dark);
  20. }
  21. #sessionHistoryItems{
  22. display: flex;
  23. flex-direction: column;
  24. align-items: center;
  25. width: 100%;
  26. }
  27. #sessionHistoryItems > button{
  28. margin: 5px 0;
  29. width: 100%;
  30. max-width: 750px;
  31. padding: 15px 0;
  32. }