a zip code crypto-currency system good for red ONLY

toast.wp.scss 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. @import "../../themes/ionic.globals.wp";
  2. // Windows Phone Toast
  3. // --------------------------------------------------
  4. /// @prop - Background of the toast wrapper
  5. $toast-wp-background: rgba(0, 0, 0, 1) !default;
  6. /// @prop - Border radius of the toast wrapper
  7. $toast-wp-border-radius: 0 !default;
  8. /// @prop - Color of the toast button
  9. $toast-wp-button-color: #fff !default;
  10. /// @prop - Color of the toast title
  11. $toast-wp-title-color: #fff !default;
  12. /// @prop - Font size of the toast title
  13. $toast-wp-title-font-size: 1.4rem !default;
  14. // deprecated
  15. $toast-wp-title-padding: null !default;
  16. /// @prop - Padding top of the toast title
  17. $toast-wp-title-padding-top: 1.5rem !default;
  18. /// @prop - Padding end of the toast title
  19. $toast-wp-title-padding-end: $toast-wp-title-padding-top !default;
  20. /// @prop - Padding bottom of the toast title
  21. $toast-wp-title-padding-bottom: $toast-wp-title-padding-top !default;
  22. /// @prop - Padding start of the toast title
  23. $toast-wp-title-padding-start: $toast-wp-title-padding-end !default;
  24. .toast-wp .toast-wrapper {
  25. @include position-horizontal(0, 0);
  26. @include margin(auto);
  27. @include border-radius($toast-wp-border-radius);
  28. position: absolute;
  29. z-index: $z-index-overlay-wrapper;
  30. display: block;
  31. max-width: $toast-max-width;
  32. background: $toast-wp-background;
  33. }
  34. .toast-wp .toast-wrapper.toast-top {
  35. top: 0;
  36. opacity: .01;
  37. }
  38. .toast-wp .toast-wrapper.toast-bottom {
  39. bottom: 0;
  40. opacity: .01;
  41. }
  42. .toast-wp .toast-wrapper.toast-middle {
  43. opacity: .01;
  44. }
  45. .toast-message {
  46. font-size: $toast-wp-title-font-size;
  47. color: $toast-wp-title-color;
  48. @include deprecated-variable(padding, $toast-wp-title-padding) {
  49. @include padding($toast-wp-title-padding-top, $toast-wp-title-padding-end, $toast-wp-title-padding-bottom, $toast-wp-title-padding-start);
  50. }
  51. }
  52. .toast-button {
  53. color: $toast-wp-button-color;
  54. }