main.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. html,body {
  2. margin: 0;
  3. padding: 0;
  4. width: 100vw;
  5. height: 100vh;
  6. }
  7. #viewer {
  8. width: 100vw;
  9. height: 100vh;
  10. overflow: hidden;
  11. background-color: #201B15;
  12. position: relative;
  13. }
  14. canvas {
  15. position: relative;
  16. width: 100%;
  17. height: 100%;
  18. }
  19. button {
  20. border: 0px;
  21. padding: 1em;
  22. min-height: 2em;
  23. min-width: 3em;
  24. background-color: #704E20;
  25. color: rgb(245, 251, 239);
  26. font-size: 24px;
  27. font-weight: 600;
  28. border-radius: 8px;
  29. position: absolute;
  30. z-index: 1;
  31. }
  32. button.skipbutton {
  33. padding: 0.5em;
  34. min-height: 1em;
  35. min-width: 2em;
  36. border: 2px solid #704E20;
  37. background-color: transparent;
  38. color: #704E20;
  39. font-size: 18px;
  40. font-weight: normal;
  41. }
  42. button.mutebutton {
  43. border: none;
  44. background-color: transparent;
  45. font-size: 18px;
  46. font-weight: normal;
  47. }
  48. button.mutebutton:after {
  49. content: "🔊";
  50. }
  51. button.mutebutton:hover {
  52. background-color: transparent;
  53. }
  54. button.mutebutton:hover:after {
  55. content: "🔇"
  56. }
  57. button:hover {
  58. cursor: pointer;
  59. color: rgb(245, 251, 239);
  60. background-color:#A3802A;
  61. }