您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

demo.css 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. }
  16. #about, #sponsor {
  17. position: absolute;
  18. width: 64px;
  19. height: 64px;
  20. opacity: 0.5;
  21. outline: none;
  22. -webkit-tap-highlight-color: transparent;
  23. cursor: pointer;
  24. background-color: transparent;
  25. background-size: cover;
  26. border-color: white;
  27. border-style: solid;
  28. border-width: 2px;
  29. border-radius: 64px;
  30. }
  31. #about:active, #about:focus, #sponsor:active, #sponsor:focus {
  32. background-color: #ffd500;
  33. border-color: #ffd500;
  34. opacity: 1.0;
  35. }
  36. #about {
  37. top: 24px;
  38. right: 24px;
  39. background-image: url(../assets/info.svg);
  40. }
  41. #sponsor {
  42. top: calc(50% - 32px);
  43. right: 24px;
  44. background-image: url(../assets/heart.svg);
  45. }
  46. @media screen and (orientation: portrait) {
  47. #about {
  48. left: 24px;
  49. bottom: 24px;
  50. top: initial;
  51. right: initial;
  52. }
  53. #sponsor {
  54. left: calc(50% - 32px);
  55. bottom: 24px;
  56. top: initial;
  57. right: initial;
  58. }
  59. }