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 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. body {
  2. background-color: black;
  3. background-image: url("../assets/poster.svg"), linear-gradient(black, 20%, #46346a);
  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 {
  17. position: absolute;
  18. right: 0;
  19. top: 0;
  20. display: inline-block;
  21. margin: 0;
  22. padding: 0 0.25em;
  23. color: #fff;
  24. font-size: 48px;
  25. font-weight: bold;
  26. font-family: monospace;
  27. text-decoration: none;
  28. text-align: center;
  29. border-bottom: 4px solid;
  30. border-color: #5c3ba3;
  31. background: linear-gradient(0deg, #7b5ec4 0%, #bb7aff 100%);
  32. -webkit-tap-highlight-color: transparent;
  33. }
  34. #about:hover {
  35. border-color: #6742b8;
  36. background: linear-gradient(0deg, #8b72cb 0%, #c894ff 100%);
  37. }
  38. #about:active {
  39. border-color: #a5a500;
  40. background: linear-gradient(0deg, #cccc00 0%, #ffff00 100%);
  41. }
  42. #about::before {
  43. content: '\24D8';
  44. }
  45. #about:focus {
  46. outline: none;
  47. }