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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. body {
  2. background-color: #46346a;
  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 {
  17. position: absolute;
  18. right: 0px;
  19. top: 0px;
  20. width: 80px;
  21. height: 80px;
  22. display: flex;
  23. align-items: center;
  24. margin: 0;
  25. padding: 0;
  26. color: #fff;
  27. font-size: 56px;
  28. font-weight: bold;
  29. font-family: monospace;
  30. text-decoration: none;
  31. text-align: center;
  32. border-width: 0 0 2px 2px;
  33. border-radius: 0 0 0 8px;
  34. border-style: solid;
  35. border-color: #673ab6;
  36. background: linear-gradient(0deg, #7e56c2 0%, #9574cd 100%);
  37. -webkit-tap-highlight-color: transparent;
  38. }
  39. #about:hover {
  40. border-color: #6742b8;
  41. background: linear-gradient(0deg, #8b72cb 0%, #c894ff 100%);
  42. }
  43. #about:active {
  44. border-color: #ddc300;
  45. background: linear-gradient(0deg, #ffd500 0%, #ffff00 100%);
  46. }
  47. #about::before {
  48. content: '\24D8';
  49. width: 100%;
  50. text-align: center;
  51. }
  52. #about:focus {
  53. outline: none;
  54. }