a zip code crypto-currency system good for red ONLY

chip.scss 2.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. @import "../../themes/ionic.globals";
  2. // Chip
  3. // --------------------------------------------------
  4. /// @prop - Border radius of the button in the chip
  5. $chip-button-border-radius: 50% !default;
  6. // deprecated
  7. $chip-button-margin: null !default;
  8. /// @prop - Margin top of the button in the chip
  9. $chip-button-margin-top: 0 !default;
  10. /// @prop - Margin end of the button in the chip
  11. $chip-button-margin-end: $chip-button-margin-top !default;
  12. /// @prop - Margin bottom of the button in the chip
  13. $chip-button-margin-bottom: $chip-button-margin-top !default;
  14. /// @prop - Margin start of the button in the chip
  15. $chip-button-margin-start: $chip-button-margin-end !default;
  16. /// @prop - Width and height of the button in the chip
  17. $chip-button-size: 32px !default;
  18. /// @prop - Border radius of the icon in the chip
  19. $chip-icon-border-radius: 50% !default;
  20. /// @prop - Text alignment of the icon in the chip
  21. $chip-icon-text-align: center !default;
  22. /// @prop - Width and height of the icon in the chip
  23. $chip-icon-size: 32px !default;
  24. /// @prop - Font size of the icon in the chip
  25. $chip-icon-font-size: 18px !default;
  26. /// @prop - Width and height of the avatar in the chip
  27. $chip-avatar-size: 32px !default;
  28. /// @prop - Border radius of the avatar in the chip
  29. $chip-avatar-border-radius: 50% !default;
  30. ion-chip {
  31. display: inline-flex;
  32. align-self: center;
  33. font-weight: normal;
  34. vertical-align: middle;
  35. box-sizing: border-box;
  36. }
  37. ion-chip .button {
  38. @include border-radius($chip-button-border-radius);
  39. width: $chip-button-size;
  40. height: $chip-button-size;
  41. @include deprecated-variable(margin, $chip-button-margin) {
  42. @include margin($chip-button-margin-top, $chip-button-margin-end, $chip-button-margin-bottom, $chip-button-margin-start);
  43. }
  44. }
  45. ion-chip ion-icon {
  46. @include text-align($chip-icon-text-align);
  47. @include border-radius($chip-icon-border-radius);
  48. width: $chip-icon-size;
  49. height: $chip-icon-size;
  50. font-size: $chip-icon-font-size;
  51. line-height: $chip-icon-size;
  52. }
  53. ion-chip ion-avatar {
  54. @include border-radius($chip-avatar-border-radius);
  55. width: $chip-avatar-size;
  56. min-width: $chip-avatar-size;
  57. height: $chip-avatar-size;
  58. min-height: $chip-avatar-size;
  59. }
  60. ion-chip ion-avatar img {
  61. @include border-radius($chip-avatar-border-radius);
  62. display: block;
  63. width: 100%;
  64. max-width: 100%;
  65. height: 100%;
  66. max-height: 100%;
  67. }