a zip code crypto-currency system good for red ONLY

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. @import "../../themes/ionic.globals";
  2. // Label
  3. // --------------------------------------------------
  4. ion-label {
  5. @include margin(0);
  6. display: block;
  7. overflow: hidden;
  8. flex: 1;
  9. font-size: inherit;
  10. text-overflow: ellipsis;
  11. white-space: nowrap;
  12. }
  13. .item-input ion-label {
  14. flex: initial;
  15. max-width: 200px;
  16. pointer-events: none;
  17. }
  18. [text-wrap] ion-label {
  19. white-space: normal;
  20. }
  21. // Stacked & Floating Inputs
  22. // --------------------------------------------------
  23. ion-label[fixed] {
  24. flex: 0 0 100px;
  25. width: 100px;
  26. min-width: 100px;
  27. max-width: 200px;
  28. }
  29. .item-label-stacked ion-label,
  30. .item-label-floating ion-label {
  31. align-self: stretch;
  32. width: auto;
  33. max-width: 100%;
  34. }
  35. ion-label[stacked],
  36. ion-label[floating] {
  37. @include margin(null, null, 0, null);
  38. }
  39. .item-label-stacked .input-wrapper,
  40. .item-label-floating .input-wrapper {
  41. flex: 1;
  42. flex-direction: column;
  43. }
  44. .item-label-stacked ion-select,
  45. .item-label-floating ion-select {
  46. align-self: stretch;
  47. max-width: 100%;
  48. }