Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

demo.css 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. #about, #sponsor {
  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. #about:active, #about:focus, #sponsor:active, #sponsor:focus {
  34. background-color: #ffd500;
  35. border-color: #ffd500;
  36. opacity: 1.0;
  37. }
  38. #about {
  39. top: 24px;
  40. right: 24px;
  41. background-image: url(../assets/info.svg);
  42. }
  43. #sponsor {
  44. top: calc(50% - 32px);
  45. right: 24px;
  46. background-image: url(../assets/heart.svg);
  47. }
  48. @media screen and (orientation: portrait) {
  49. #about {
  50. left: 24px;
  51. bottom: 24px;
  52. top: initial;
  53. right: initial;
  54. }
  55. #sponsor {
  56. left: calc(50% - 32px);
  57. bottom: 24px;
  58. top: initial;
  59. right: initial;
  60. }
  61. }