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

63 Zeilen
1.4 KiB

  1. #userlikeCustomTab, .userlike-custom-button {
  2. position: fixed;
  3. right: 20px;
  4. bottom: 20px;
  5. border-radius: 100px;
  6. background-color: $color-secondary;
  7. background-color: var(--theme-color-secondary, $color-secondary);
  8. color: white;
  9. width: 70px;
  10. height: 70px;
  11. display: flex;
  12. justify-content: center;
  13. align-items: center;
  14. text-decoration: none;
  15. transition: right 0.25s $easeOutQuad, z-index 0s linear 0.3s, background-color 0.3s ease;
  16. box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
  17. padding-top: 1px;
  18. font-size: 38px;
  19. cursor: pointer;
  20. box-shadow: 0 0 0 1px rgba(white, 0.2);
  21. z-index: 5;
  22. &:hover {
  23. background-color: $color-secondary-dark;
  24. background-color: var(--theme-color-secondary-intensed, $color-secondary-dark);
  25. }
  26. &:before {
  27. @include icon-userlike-chat;
  28. font-family: "Icons";
  29. }
  30. @media(max-width: 767px) {
  31. width: 48px;
  32. height: 48px;
  33. font-size: 22px;
  34. bottom: 6px;
  35. right: 6px;
  36. }
  37. ~ p {
  38. display: none;
  39. }
  40. }
  41. #userlike-popup {
  42. z-index: 101;
  43. }
  44. @media(min-width: 768px) {
  45. .nav-open:not(.search-open) #userlikeCustomTab {
  46. right: 440px;
  47. z-index: 100;
  48. transition: right 0.25s $easeOutQuad, z-index 0s linear 0s, background-color 0.3s ease;
  49. }
  50. .nav-open:not(.search-open) .userlike-custom-button {
  51. right: 440px;
  52. z-index: 100;
  53. transition: right 0.25s $easeOutQuad, z-index 0s linear 0s, background-color 0.3s ease;
  54. }
  55. }