Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

55 linhas
1.1 KiB

  1. @import '../../_global/styles/mixins';
  2. @import '../../_global/styles/vars';
  3. button.search-submit {
  4. position: absolute;
  5. display: flex;
  6. align-items: center;
  7. justify-content: center;
  8. top: 0;
  9. right: 0;
  10. width: 80px;
  11. height: 80px;
  12. border-radius: 32px;
  13. border: 0;
  14. background-color: var(--theme-color-secondary);
  15. color: var(--theme-color-primary);
  16. padding: 0 2px 0 0;
  17. cursor: pointer;
  18. transition: 0.25s ease;
  19. @include focus-visible;
  20. &:hover {
  21. background-color: var(--theme-color-secondary-intensed);
  22. color: var(--theme-color-background);
  23. }
  24. &:before {
  25. @include icon-suche-big;
  26. font-family: 'Icons', sans-serif;
  27. position: relative;
  28. display: block;
  29. text-align: center;
  30. font-size: 40px;
  31. line-height: 1;
  32. }
  33. &.secondary {
  34. background-color: var(--theme-color-primary);
  35. color: var(--theme-color-white);
  36. &:hover {
  37. background-color: var(--theme-color-primary-dimmed-04);
  38. color: var(--theme-color-primary);
  39. }
  40. }
  41. @media(max-width: 767px) {
  42. border-radius: 28px;
  43. width: 70px;
  44. height: 70px;
  45. &:before {
  46. font-size: 36px;
  47. }
  48. }
  49. }