Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

demo.css 865B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. body {
  2. background-color: black;
  3. }
  4. #scan {
  5. width: 100%;
  6. height: 100%;
  7. object-fit: contain;
  8. opacity: 0.75;
  9. }
  10. #about {
  11. position: absolute;
  12. right: 0;
  13. top: 0;
  14. display: inline-block;
  15. margin: 0;
  16. padding: 0 0.25em;
  17. color: #fff;
  18. font-size: 48px;
  19. font-weight: bold;
  20. font-family: monospace;
  21. text-decoration: none;
  22. text-align: center;
  23. border-bottom: 4px solid;
  24. border-color: #5c3ba3;
  25. background: linear-gradient(0deg, #7b5ec4 0%, #bb7aff 100%);
  26. -webkit-tap-highlight-color: transparent;
  27. }
  28. #about:hover {
  29. border-color: #6742b8;
  30. background: linear-gradient(0deg, #8b72cb 0%, #c894ff 100%);
  31. }
  32. #about:active {
  33. border-color: #a5a500;
  34. background: linear-gradient(0deg, #cccc00 0%, #ffff00 100%);
  35. }
  36. #about::before {
  37. content: '\24D8';
  38. }
  39. #about:focus {
  40. outline: none;
  41. }