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.

demo.css 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. }
  48. @media screen and (orientation: portrait) {
  49. #like {
  50. top: unset;
  51. right: unset;
  52. bottom: 24px;
  53. left: 24px;
  54. }
  55. #info {
  56. top: 24px;
  57. right: 24px;
  58. bottom: unset;
  59. left: unset;
  60. }
  61. }