a zip code crypto-currency system good for red ONLY

grid.scss 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. @import "../../themes/ionic.globals";
  2. @import "./grid.mixins";
  3. // Grid
  4. // --------------------------------------------------
  5. // Using flexbox for the grid, originally inspired by Philip Walton:
  6. // http://philipwalton.github.io/solved-by-flexbox/demos/grids/
  7. // Column layout based on the Bootstrap grid system:
  8. // http://v4-alpha.getbootstrap.com/layout/grid/
  9. // Grid Breakpoints
  10. // --------------------------------------------------
  11. /// @prop - The minimum dimensions at which your layout will change,
  12. /// adapting to different screen sizes, for use in media queries
  13. $grid-breakpoints: (
  14. xs: 0,
  15. sm: 576px,
  16. md: 768px,
  17. lg: 992px,
  18. xl: 1200px
  19. ) !default;
  20. // Grid Containers
  21. // --------------------------------------------------
  22. /// @prop - Maximum width of the grid for different screen sizes
  23. $grid-max-widths: (
  24. sm: 540px,
  25. md: 720px,
  26. lg: 960px,
  27. xl: 1140px
  28. ) !default;
  29. // Grid Columns
  30. // --------------------------------------------------
  31. /// @prop - Number of columns for the grid
  32. $grid-columns: 12 !default;
  33. /// @prop - Total width of the padding for the grid
  34. $grid-padding-width: 10px !default;
  35. /// @prop - Padding for the columns for different screen sizes
  36. $grid-padding-widths: (
  37. xs: $grid-padding-width,
  38. sm: $grid-padding-width,
  39. md: $grid-padding-width,
  40. lg: $grid-padding-width,
  41. xl: $grid-padding-width
  42. ) !default;
  43. // Check that the Sass maps are declared correctly
  44. // --------------------------------------------------
  45. @include assert-ascending($grid-breakpoints, "$grid-breakpoints");
  46. @include assert-starts-at-zero($grid-breakpoints, "$grid-breakpoints");
  47. @include assert-ascending($grid-max-widths, "$grid-max-widths");
  48. // Grid
  49. // --------------------------------------------------
  50. .grid {
  51. @include make-grid();
  52. &[fixed] {
  53. @include make-grid-max-widths();
  54. }
  55. }
  56. // Row
  57. // --------------------------------------------------
  58. .row {
  59. @include make-row();
  60. }
  61. // Columns
  62. // --------------------------------------------------
  63. .col {
  64. @include make-column-base();
  65. }
  66. @include make-grid-columns();