ui.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. .uiContainer {
  2. left: 10px;
  3. top: 10px;
  4. min-width: 200px;
  5. background-color: rgba(255, 255, 255, 0.5);
  6. padding-bottom: 10px;
  7. box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  8. z-index: 9999;
  9. }
  10. .uiTitle {
  11. padding: 5px 20px;
  12. display: flex;
  13. justify-content: space-between;
  14. cursor: pointer;
  15. background-color: rgba(255, 255, 255, 0.1);
  16. transition: background-color 0.3s ease;
  17. }
  18. .uiTitle:hover {
  19. background-color: rgba(0, 0, 0, 0.1);
  20. }
  21. .uiTitle p {
  22. margin: 0 !important;
  23. }
  24. .uiContent {
  25. padding: 5px 20px;
  26. font-weight: bold;
  27. }
  28. .loader {
  29. display: inline-block;
  30. width: 12px;
  31. aspect-ratio: 1;
  32. border-radius: 50%;
  33. border: 2px solid;
  34. border-color: #606d6e #fff;
  35. animation: l1 1s infinite;
  36. margin-right: 15px;
  37. }
  38. @keyframes l1 {to{transform: rotate(.5turn)}}
  39. .pageAmount {
  40. display: none;
  41. }
  42. .jumpToPage, .pagesToDisplay {
  43. margin-top: 10px;
  44. display: none;
  45. }
  46. .jumpToPage input {
  47. font-weight: normal;
  48. width: 60px;
  49. }
  50. .intervalContainer {
  51. display: flex;
  52. justify-content: center;
  53. align-content: space-between;
  54. }
  55. .intervalContainer p {
  56. margin: 0;
  57. font-weight: normal;
  58. }
  59. .intervalContainer input {
  60. margin: 0 5px;
  61. width: 60px;
  62. font-weight: normal;
  63. }