Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

poster.css 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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: 24px;
  39. right: 24px;
  40. padding: 16px;
  41. color: rgb(184, 98, 184);
  42. background-color: white;
  43. border: 0;
  44. border-radius: 24px;
  45. font-family: sans-serif;
  46. font-size: 1.25em;
  47. font-weight: bold;
  48. text-decoration: underline;
  49. transition: transform 0.25s;
  50. }
  51. #back:visited {
  52. color: rgb(184, 98, 184);
  53. }
  54. #back:active, #back:hover {
  55. color: rgb(184, 98, 184);
  56. transform: scale(1.1);
  57. }
  58. #prev, #next {
  59. position: fixed;
  60. top: calc(50% - 55px);
  61. font-size: 96px;
  62. color: white;
  63. text-decoration: none;
  64. opacity: 0.5;
  65. transition: opacity 0.5s;
  66. transition: transform 0.125s;
  67. }
  68. #prev {
  69. left: 8%;
  70. }
  71. #next {
  72. right: 8%;
  73. }
  74. #prev:hover {
  75. opacity: 1.0;
  76. transform: translateX(-4px);
  77. }
  78. #next:hover {
  79. opacity: 1.0;
  80. transform: translateX(4px);
  81. }
  82. #prev::before {
  83. content: "\276E";
  84. }
  85. #next::before {
  86. content: "\276F";
  87. }