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.1KB

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