Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

poster.css 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. body {
  2. background-color: #33334c;
  3. background-image: url(mage.webp);
  4. background-size: contain;
  5. background-repeat: no-repeat;
  6. background-position: center;
  7. width: 100vw;
  8. height: 100vh;
  9. padding: 0;
  10. margin: 0;
  11. }
  12. #qr-code-area {
  13. display: flex;
  14. align-items: center;
  15. flex-direction: column;
  16. position: fixed;
  17. bottom: 16px;
  18. right: 16px;
  19. color: black;
  20. background-color: white;
  21. border-radius: 16px;
  22. padding: 0.5em;
  23. text-align: center;
  24. font-weight: bold;
  25. font-family: sans-serif;
  26. font-size: 1.25em;
  27. }
  28. #qr-code-area h4 {
  29. margin: 0;
  30. }
  31. #qr-code {
  32. image-rendering: pixelated;
  33. min-width: 120px;
  34. height: auto;
  35. }
  36. #back {
  37. position: fixed;
  38. top: 0px;
  39. right: 0px;
  40. padding: 8px;
  41. color: #9999a6;
  42. background-color: #33334c;
  43. font-family: sans-serif;
  44. font-size: 1em;
  45. text-decoration: underline;
  46. transition: color 0.125s;
  47. }
  48. #back:visited {
  49. color: #9999a6;
  50. }
  51. #back:active, #back:hover {
  52. color: white;
  53. }
  54. #prev, #next {
  55. position: fixed;
  56. top: calc(50% - 55px);
  57. font-size: 96px;
  58. color: white;
  59. text-decoration: none;
  60. opacity: 0.5;
  61. transition: opacity 0.5s;
  62. transition: transform 0.125s;
  63. }
  64. #prev {
  65. left: 8%;
  66. }
  67. #next {
  68. right: 8%;
  69. }
  70. #prev:hover {
  71. opacity: 1.0;
  72. transform: translateX(-4px);
  73. }
  74. #next:hover {
  75. opacity: 1.0;
  76. transform: translateX(4px);
  77. }
  78. #prev::before {
  79. content: "\276E";
  80. }
  81. #next::before {
  82. content: "\276F";
  83. }