Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

poster.css 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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. font-family: "Lato", sans-serif;
  8. width: 100vw;
  9. height: 100vh;
  10. padding: 0;
  11. margin: 0;
  12. }
  13. #qr-code-area {
  14. display: flex;
  15. align-items: center;
  16. flex-direction: column;
  17. position: fixed;
  18. bottom: 16px;
  19. right: 16px;
  20. color: black;
  21. background-color: white;
  22. border-radius: 4px;
  23. padding: 0.5em;
  24. text-align: center;
  25. font-weight: bold;
  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. #get {
  37. position: fixed;
  38. top: 16px;
  39. left: 16px;
  40. padding: 16px;
  41. color: white;
  42. background-color: blueviolet;
  43. border: 0;
  44. border-radius: 4px;
  45. font-size: 1.2rem;
  46. font-weight: bold;
  47. text-decoration: none;
  48. opacity: 0.8;
  49. transition: transform 0.25s, opacity 0.25s;
  50. }
  51. #get:any-link {
  52. color: white;
  53. }
  54. #get:hover {
  55. transform: scale(1.0625);
  56. opacity: 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. outline: none;
  65. -webkit-tap-highlight-color: transparent;
  66. cursor: pointer;
  67. opacity: 0.5;
  68. transition: opacity 0.5s;
  69. transition: transform 0.125s;
  70. }
  71. #prev {
  72. left: 8%;
  73. }
  74. #next {
  75. right: 8%;
  76. }
  77. #prev:hover {
  78. opacity: 1.0;
  79. transform: translateX(-4px);
  80. }
  81. #next:hover {
  82. opacity: 1.0;
  83. transform: translateX(4px);
  84. }
  85. #prev::before {
  86. content: "\276E";
  87. }
  88. #next::before {
  89. content: "\276F";
  90. }
  91. #film {
  92. position: fixed;
  93. top: 16px;
  94. right: 16px;
  95. width: 64px;
  96. height: 64px;
  97. padding: 0;
  98. border: 0;
  99. background-color: blueviolet;
  100. border-radius: 4px;
  101. opacity: 0.8;
  102. transition: transform 0.25s, opacity 0.25s;
  103. }
  104. #film:hover {
  105. transform: scale(1.0625);
  106. opacity: 1;
  107. }
  108. #film i {
  109. display: inline-block;
  110. width: 100%;
  111. height: 100%;
  112. background-image: url(../assets/video-film.svg);
  113. background-size: 60%;
  114. background-repeat: no-repeat;
  115. background-position: center;
  116. }