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ů.

demo.css 1008B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. body {
  2. background-color: #673ab6;
  3. background-image: url(../assets/poster.svg);
  4. background-position: center;
  5. background-repeat: no-repeat;
  6. height: 100vh;
  7. margin: 0;
  8. padding: 0;
  9. }
  10. #scan {
  11. width: 100%;
  12. height: 100%;
  13. object-fit: contain;
  14. opacity: 0.75;
  15. z-index: 0;
  16. }
  17. #info, #like {
  18. position: absolute;
  19. width: 64px;
  20. height: 64px;
  21. opacity: 0.5;
  22. z-index: 1;
  23. outline: none;
  24. -webkit-tap-highlight-color: transparent;
  25. cursor: pointer;
  26. background-color: transparent;
  27. background-size: cover;
  28. border-color: white;
  29. border-style: solid;
  30. border-width: 2px;
  31. border-radius: 64px;
  32. }
  33. #info:active, #info:focus, #like:active, #like:focus {
  34. background-color: #ffd500;
  35. border-color: #ffd500;
  36. opacity: 1.0;
  37. }
  38. #info {
  39. bottom: 24px;
  40. left: 24px;
  41. background-image: url(../assets/info.svg);
  42. }
  43. #like {
  44. top: 24px;
  45. right: 24px;
  46. background-image: url(../assets/heart.svg);
  47. display: none;
  48. }