Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

demo.css 982B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. #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. }