The code powering m.abunchtell.com https://m.abunchtell.com
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.
 
 
 
 

44 rader
732 B

  1. @mixin avatar-radius() {
  2. border-radius: 4px;
  3. background: transparent no-repeat;
  4. background-position: 50%;
  5. background-clip: padding-box;
  6. }
  7. @mixin avatar-size($size:48px) {
  8. width: $size;
  9. height: $size;
  10. background-size: $size $size;
  11. }
  12. @mixin search-input() {
  13. outline: 0;
  14. box-sizing: border-box;
  15. width: 100%;
  16. border: none;
  17. box-shadow: none;
  18. font-family: inherit;
  19. background: $ui-base-color;
  20. color: $darker-text-color;
  21. font-size: 14px;
  22. margin: 0;
  23. &::-moz-focus-inner {
  24. border: 0;
  25. }
  26. &::-moz-focus-inner,
  27. &:focus,
  28. &:active {
  29. outline: 0 !important;
  30. }
  31. &:focus {
  32. background: lighten($ui-base-color, 4%);
  33. }
  34. @media screen and (max-width: 600px) {
  35. font-size: 16px;
  36. }
  37. }