fastfood 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +2 -0
  3. data/.travis.yml +26 -0
  4. data/Gemfile +3 -0
  5. data/LICENSE +21 -0
  6. data/README.md +18 -0
  7. data/Rakefile +12 -0
  8. data/app/assets/stylesheets/_fastfood.scss +48 -0
  9. data/app/assets/stylesheets/fastfood/_alerts.scss +73 -0
  10. data/app/assets/stylesheets/fastfood/_badges.scss +68 -0
  11. data/app/assets/stylesheets/fastfood/_breadcrumbs.scss +26 -0
  12. data/app/assets/stylesheets/fastfood/_button-groups.scss +243 -0
  13. data/app/assets/stylesheets/fastfood/_buttons.scss +160 -0
  14. data/app/assets/stylesheets/fastfood/_carousel.scss +269 -0
  15. data/app/assets/stylesheets/fastfood/_close.scss +36 -0
  16. data/app/assets/stylesheets/fastfood/_code.scss +69 -0
  17. data/app/assets/stylesheets/fastfood/_component-animations.scss +37 -0
  18. data/app/assets/stylesheets/fastfood/_dropdowns.scss +214 -0
  19. data/app/assets/stylesheets/fastfood/_forms.scss +578 -0
  20. data/app/assets/stylesheets/fastfood/_grid.scss +85 -0
  21. data/app/assets/stylesheets/fastfood/_input-groups.scss +166 -0
  22. data/app/assets/stylesheets/fastfood/_jumbotron.scss +50 -0
  23. data/app/assets/stylesheets/fastfood/_labels.scss +66 -0
  24. data/app/assets/stylesheets/fastfood/_list-group.scss +124 -0
  25. data/app/assets/stylesheets/fastfood/_media.scss +61 -0
  26. data/app/assets/stylesheets/fastfood/_mixins.scss +39 -0
  27. data/app/assets/stylesheets/fastfood/_modals.scss +150 -0
  28. data/app/assets/stylesheets/fastfood/_navbar.scss +664 -0
  29. data/app/assets/stylesheets/fastfood/_navs.scss +242 -0
  30. data/app/assets/stylesheets/fastfood/_normalize.scss +427 -0
  31. data/app/assets/stylesheets/fastfood/_pager.scss +54 -0
  32. data/app/assets/stylesheets/fastfood/_pagination.scss +88 -0
  33. data/app/assets/stylesheets/fastfood/_panels.scss +265 -0
  34. data/app/assets/stylesheets/fastfood/_popovers.scss +135 -0
  35. data/app/assets/stylesheets/fastfood/_print.scss +107 -0
  36. data/app/assets/stylesheets/fastfood/_progress-bars.scss +87 -0
  37. data/app/assets/stylesheets/fastfood/_responsive-embed.scss +35 -0
  38. data/app/assets/stylesheets/fastfood/_responsive-utilities.scss +177 -0
  39. data/app/assets/stylesheets/fastfood/_scaffolding.scss +204 -0
  40. data/app/assets/stylesheets/fastfood/_tables.scss +234 -0
  41. data/app/assets/stylesheets/fastfood/_theme.scss +273 -0
  42. data/app/assets/stylesheets/fastfood/_thumbnails.scss +38 -0
  43. data/app/assets/stylesheets/fastfood/_tooltip.scss +102 -0
  44. data/app/assets/stylesheets/fastfood/_type.scss +306 -0
  45. data/app/assets/stylesheets/fastfood/_utilities.scss +73 -0
  46. data/app/assets/stylesheets/fastfood/_wells.scss +29 -0
  47. data/app/assets/stylesheets/fastfood/mixins/_alerts.scss +14 -0
  48. data/app/assets/stylesheets/fastfood/mixins/_background-variant.scss +11 -0
  49. data/app/assets/stylesheets/fastfood/mixins/_border-radius.scss +18 -0
  50. data/app/assets/stylesheets/fastfood/mixins/_buttons.scss +52 -0
  51. data/app/assets/stylesheets/fastfood/mixins/_center-block.scss +7 -0
  52. data/app/assets/stylesheets/fastfood/mixins/_clearfix.scss +22 -0
  53. data/app/assets/stylesheets/fastfood/mixins/_forms.scss +88 -0
  54. data/app/assets/stylesheets/fastfood/mixins/_gradients.scss +58 -0
  55. data/app/assets/stylesheets/fastfood/mixins/_grid-framework.scss +81 -0
  56. data/app/assets/stylesheets/fastfood/mixins/_grid.scss +123 -0
  57. data/app/assets/stylesheets/fastfood/mixins/_hide-text.scss +21 -0
  58. data/app/assets/stylesheets/fastfood/mixins/_image.scss +33 -0
  59. data/app/assets/stylesheets/fastfood/mixins/_labels.scss +12 -0
  60. data/app/assets/stylesheets/fastfood/mixins/_list-group.scss +31 -0
  61. data/app/assets/stylesheets/fastfood/mixins/_nav-divider.scss +10 -0
  62. data/app/assets/stylesheets/fastfood/mixins/_nav-vertical-align.scss +9 -0
  63. data/app/assets/stylesheets/fastfood/mixins/_opacity.scss +8 -0
  64. data/app/assets/stylesheets/fastfood/mixins/_pagination.scss +23 -0
  65. data/app/assets/stylesheets/fastfood/mixins/_panels.scss +24 -0
  66. data/app/assets/stylesheets/fastfood/mixins/_progress-bar.scss +10 -0
  67. data/app/assets/stylesheets/fastfood/mixins/_reset-filter.scss +8 -0
  68. data/app/assets/stylesheets/fastfood/mixins/_resize.scss +6 -0
  69. data/app/assets/stylesheets/fastfood/mixins/_responsive-visibility.scss +21 -0
  70. data/app/assets/stylesheets/fastfood/mixins/_size.scss +10 -0
  71. data/app/assets/stylesheets/fastfood/mixins/_tab-focus.scss +9 -0
  72. data/app/assets/stylesheets/fastfood/mixins/_table-row.scss +28 -0
  73. data/app/assets/stylesheets/fastfood/mixins/_text-emphasis.scss +11 -0
  74. data/app/assets/stylesheets/fastfood/mixins/_text-overflow.scss +8 -0
  75. data/app/assets/stylesheets/fastfood/mixins/_vendor-prefixes.scss +222 -0
  76. data/bin/fastfood +6 -0
  77. data/fastfood.gemspec +30 -0
  78. data/lib/.gitkeep +0 -0
  79. data/lib/fastfood.rb +28 -0
  80. data/lib/fastfood/engine.rb +5 -0
  81. data/lib/fastfood/generator.rb +80 -0
  82. data/lib/fastfood/version.rb +3 -0
  83. data/lib/tasks/install.rake +20 -0
  84. metadata +225 -0
@@ -0,0 +1,29 @@
1
+ //
2
+ // Wells
3
+ // --------------------------------------------------
4
+
5
+
6
+ // Base class
7
+ .well {
8
+ min-height: 20px;
9
+ padding: 19px;
10
+ margin-bottom: 20px;
11
+ background-color: $well-bg;
12
+ border: 1px solid $well-border;
13
+ border-radius: $border-radius-base;
14
+ @include box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
15
+ blockquote {
16
+ border-color: #ddd;
17
+ border-color: rgba(0,0,0,.15);
18
+ }
19
+ }
20
+
21
+ // Sizes
22
+ .well-lg {
23
+ padding: 24px;
24
+ border-radius: $border-radius-large;
25
+ }
26
+ .well-sm {
27
+ padding: 9px;
28
+ border-radius: $border-radius-small;
29
+ }
@@ -0,0 +1,14 @@
1
+ // Alerts
2
+
3
+ @mixin alert-variant($background, $border, $text-color) {
4
+ background-color: $background;
5
+ border-color: $border;
6
+ color: $text-color;
7
+
8
+ hr {
9
+ border-top-color: darken($border, 5%);
10
+ }
11
+ .alert-link {
12
+ color: darken($text-color, 10%);
13
+ }
14
+ }
@@ -0,0 +1,11 @@
1
+ // Contextual backgrounds
2
+
3
+ // [converter] $parent hack
4
+ @mixin bg-variant($parent, $color) {
5
+ #{$parent} {
6
+ background-color: $color;
7
+ }
8
+ a#{$parent}:hover {
9
+ background-color: darken($color, 10%);
10
+ }
11
+ }
@@ -0,0 +1,18 @@
1
+ // Single side border-radius
2
+
3
+ @mixin border-top-radius($radius) {
4
+ border-top-right-radius: $radius;
5
+ border-top-left-radius: $radius;
6
+ }
7
+ @mixin border-right-radius($radius) {
8
+ border-bottom-right-radius: $radius;
9
+ border-top-right-radius: $radius;
10
+ }
11
+ @mixin border-bottom-radius($radius) {
12
+ border-bottom-right-radius: $radius;
13
+ border-bottom-left-radius: $radius;
14
+ }
15
+ @mixin border-left-radius($radius) {
16
+ border-bottom-left-radius: $radius;
17
+ border-top-left-radius: $radius;
18
+ }
@@ -0,0 +1,52 @@
1
+ // Button variants
2
+ //
3
+ // Easily pump out default styles, as well as :hover, :focus, :active,
4
+ // and disabled options for all buttons
5
+
6
+ @mixin button-variant($color, $background, $border) {
7
+ color: $color;
8
+ background-color: $background;
9
+ border-color: $border;
10
+
11
+ &:hover,
12
+ &:focus,
13
+ &.focus,
14
+ &:active,
15
+ &.active,
16
+ .open > &.dropdown-toggle {
17
+ color: $color;
18
+ background-color: darken($background, 10%);
19
+ border-color: darken($border, 12%);
20
+ }
21
+ &:active,
22
+ &.active,
23
+ .open > &.dropdown-toggle {
24
+ background-image: none;
25
+ }
26
+ &.disabled,
27
+ &[disabled],
28
+ fieldset[disabled] & {
29
+ &,
30
+ &:hover,
31
+ &:focus,
32
+ &.focus,
33
+ &:active,
34
+ &.active {
35
+ background-color: $background;
36
+ border-color: $border;
37
+ }
38
+ }
39
+
40
+ .badge {
41
+ color: $background;
42
+ background-color: $color;
43
+ }
44
+ }
45
+
46
+ // Button sizes
47
+ @mixin button-size($padding-vertical, $padding-horizontal, $font-size, $line-height, $border-radius) {
48
+ padding: $padding-vertical $padding-horizontal;
49
+ font-size: $font-size;
50
+ line-height: $line-height;
51
+ border-radius: $border-radius;
52
+ }
@@ -0,0 +1,7 @@
1
+ // Center-align a block level element
2
+
3
+ @mixin center-block() {
4
+ display: block;
5
+ margin-left: auto;
6
+ margin-right: auto;
7
+ }
@@ -0,0 +1,22 @@
1
+ // Clearfix
2
+ //
3
+ // For modern browsers
4
+ // 1. The space content is one way to avoid an Opera bug when the
5
+ // contenteditable attribute is included anywhere else in the document.
6
+ // Otherwise it causes space to appear at the top and bottom of elements
7
+ // that are clearfixed.
8
+ // 2. The use of `table` rather than `block` is only necessary if using
9
+ // `:before` to contain the top-margins of child elements.
10
+ //
11
+ // Source: http://nicolasgallagher.com/micro-clearfix-hack/
12
+
13
+ @mixin clearfix() {
14
+ &:before,
15
+ &:after {
16
+ content: " "; // 1
17
+ display: table; // 2
18
+ }
19
+ &:after {
20
+ clear: both;
21
+ }
22
+ }
@@ -0,0 +1,88 @@
1
+ // Form validation states
2
+ //
3
+ // Used in forms.less to generate the form validation CSS for warnings, errors,
4
+ // and successes.
5
+
6
+ @mixin form-control-validation($text-color: #555, $border-color: #ccc, $background-color: #f5f5f5) {
7
+ // Color the label and help text
8
+ .help-block,
9
+ .control-label,
10
+ .radio,
11
+ .checkbox,
12
+ .radio-inline,
13
+ .checkbox-inline,
14
+ &.radio label,
15
+ &.checkbox label,
16
+ &.radio-inline label,
17
+ &.checkbox-inline label {
18
+ color: $text-color;
19
+ }
20
+ // Set the border and box shadow on specific inputs to match
21
+ .form-control {
22
+ border-color: $border-color;
23
+ @include box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work
24
+ &:focus {
25
+ border-color: darken($border-color, 10%);
26
+ $shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten($border-color, 20%);
27
+ @include box-shadow($shadow);
28
+ }
29
+ }
30
+ // Set validation states also for addons
31
+ .input-group-addon {
32
+ color: $text-color;
33
+ border-color: $border-color;
34
+ background-color: $background-color;
35
+ }
36
+ // Optional feedback icon
37
+ .form-control-feedback {
38
+ color: $text-color;
39
+ }
40
+ }
41
+
42
+
43
+ // Form control focus state
44
+ //
45
+ // Generate a customized focus state and for any input with the specified color,
46
+ // which defaults to the `$input-border-focus` variable.
47
+ //
48
+ // We highly encourage you to not customize the default value, but instead use
49
+ // this to tweak colors on an as-needed basis. This aesthetic change is based on
50
+ // WebKit's default styles, but applicable to a wider range of browsers. Its
51
+ // usability and accessibility should be taken into account with any change.
52
+ //
53
+ // Example usage: change the default blue border and shadow to white for better
54
+ // contrast against a dark gray background.
55
+ @mixin form-control-focus($color: $input-border-focus) {
56
+ $color-rgba: rgba(red($color), green($color), blue($color), .6);
57
+ &:focus {
58
+ border-color: $color;
59
+ outline: 0;
60
+ @include box-shadow(inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px $color-rgba);
61
+ }
62
+ }
63
+
64
+ // Form control sizing
65
+ //
66
+ // Relative text size, padding, and border-radii changes for form controls. For
67
+ // horizontal sizing, wrap controls in the predefined grid classes. `<select>`
68
+ // element gets special love because it's special, and that's a fact!
69
+ // [converter] $parent hack
70
+ @mixin input-size($parent, $input-height, $padding-vertical, $padding-horizontal, $font-size, $line-height, $border-radius) {
71
+ #{$parent} {
72
+ height: $input-height;
73
+ padding: $padding-vertical $padding-horizontal;
74
+ font-size: $font-size;
75
+ line-height: $line-height;
76
+ border-radius: $border-radius;
77
+ }
78
+
79
+ select#{$parent} {
80
+ height: $input-height;
81
+ line-height: $input-height;
82
+ }
83
+
84
+ textarea#{$parent},
85
+ select[multiple]#{$parent} {
86
+ height: auto;
87
+ }
88
+ }
@@ -0,0 +1,58 @@
1
+ // Gradients
2
+
3
+
4
+
5
+ // Horizontal gradient, from left to right
6
+ //
7
+ // Creates two color stops, start and end, by specifying a color and position for each color stop.
8
+ // Color stops are not available in IE9 and below.
9
+ @mixin gradient-horizontal($start-color: #555, $end-color: #333, $start-percent: 0%, $end-percent: 100%) {
10
+ background-image: -webkit-linear-gradient(left, $start-color $start-percent, $end-color $end-percent); // Safari 5.1-6, Chrome 10+
11
+ background-image: -o-linear-gradient(left, $start-color $start-percent, $end-color $end-percent); // Opera 12
12
+ background-image: linear-gradient(to right, $start-color $start-percent, $end-color $end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
13
+ background-repeat: repeat-x;
14
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}', GradientType=1); // IE9 and down
15
+ }
16
+
17
+ // Vertical gradient, from top to bottom
18
+ //
19
+ // Creates two color stops, start and end, by specifying a color and position for each color stop.
20
+ // Color stops are not available in IE9 and below.
21
+ @mixin gradient-vertical($start-color: #555, $end-color: #333, $start-percent: 0%, $end-percent: 100%) {
22
+ background-image: -webkit-linear-gradient(top, $start-color $start-percent, $end-color $end-percent); // Safari 5.1-6, Chrome 10+
23
+ background-image: -o-linear-gradient(top, $start-color $start-percent, $end-color $end-percent); // Opera 12
24
+ background-image: linear-gradient(to bottom, $start-color $start-percent, $end-color $end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
25
+ background-repeat: repeat-x;
26
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}', GradientType=0); // IE9 and down
27
+ }
28
+
29
+ @mixin gradient-directional($start-color: #555, $end-color: #333, $deg: 45deg) {
30
+ background-repeat: repeat-x;
31
+ background-image: -webkit-linear-gradient($deg, $start-color, $end-color); // Safari 5.1-6, Chrome 10+
32
+ background-image: -o-linear-gradient($deg, $start-color, $end-color); // Opera 12
33
+ background-image: linear-gradient($deg, $start-color, $end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
34
+ }
35
+ @mixin gradient-horizontal-three-colors($start-color: #00b3ee, $mid-color: #7a43b6, $color-stop: 50%, $end-color: #c3325f) {
36
+ background-image: -webkit-linear-gradient(left, $start-color, $mid-color $color-stop, $end-color);
37
+ background-image: -o-linear-gradient(left, $start-color, $mid-color $color-stop, $end-color);
38
+ background-image: linear-gradient(to right, $start-color, $mid-color $color-stop, $end-color);
39
+ background-repeat: no-repeat;
40
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}', GradientType=1); // IE9 and down, gets no color-stop at all for proper fallback
41
+ }
42
+ @mixin gradient-vertical-three-colors($start-color: #00b3ee, $mid-color: #7a43b6, $color-stop: 50%, $end-color: #c3325f) {
43
+ background-image: -webkit-linear-gradient($start-color, $mid-color $color-stop, $end-color);
44
+ background-image: -o-linear-gradient($start-color, $mid-color $color-stop, $end-color);
45
+ background-image: linear-gradient($start-color, $mid-color $color-stop, $end-color);
46
+ background-repeat: no-repeat;
47
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}', GradientType=0); // IE9 and down, gets no color-stop at all for proper fallback
48
+ }
49
+ @mixin gradient-radial($inner-color: #555, $outer-color: #333) {
50
+ background-image: -webkit-radial-gradient(circle, $inner-color, $outer-color);
51
+ background-image: radial-gradient(circle, $inner-color, $outer-color);
52
+ background-repeat: no-repeat;
53
+ }
54
+ @mixin gradient-striped($color: rgba(255,255,255,.15), $angle: 45deg) {
55
+ background-image: -webkit-linear-gradient($angle, $color 25%, transparent 25%, transparent 50%, $color 50%, $color 75%, transparent 75%, transparent);
56
+ background-image: -o-linear-gradient($angle, $color 25%, transparent 25%, transparent 50%, $color 50%, $color 75%, transparent 75%, transparent);
57
+ background-image: linear-gradient($angle, $color 25%, transparent 25%, transparent 50%, $color 50%, $color 75%, transparent 75%, transparent);
58
+ }
@@ -0,0 +1,81 @@
1
+ // Framework grid generation
2
+ //
3
+ // Used only by Bootstrap to generate the correct number of grid classes given
4
+ // any value of `$grid-columns`.
5
+
6
+ // [converter] This is defined recursively in LESS, but Sass supports real loops
7
+ @mixin make-grid-columns($i: 1, $list: ".col-xs-#{$i}, .col-sm-#{$i}, .col-md-#{$i}, .col-lg-#{$i}") {
8
+ @for $i from (1 + 1) through $grid-columns {
9
+ $list: "#{$list}, .col-xs-#{$i}, .col-sm-#{$i}, .col-md-#{$i}, .col-lg-#{$i}";
10
+ }
11
+ #{$list} {
12
+ position: relative;
13
+ // Prevent columns from collapsing when empty
14
+ min-height: 1px;
15
+ // Inner gutter via padding
16
+ padding-left: ($grid-gutter-width / 2);
17
+ padding-right: ($grid-gutter-width / 2);
18
+ }
19
+ }
20
+
21
+
22
+ // [converter] This is defined recursively in LESS, but Sass supports real loops
23
+ @mixin float-grid-columns($class, $i: 1, $list: ".col-#{$class}-#{$i}") {
24
+ @for $i from (1 + 1) through $grid-columns {
25
+ $list: "#{$list}, .col-#{$class}-#{$i}";
26
+ }
27
+ #{$list} {
28
+ float: left;
29
+ }
30
+ }
31
+
32
+
33
+ @mixin calc-grid-column($index, $class, $type) {
34
+ @if ($type == width) and ($index > 0) {
35
+ .col-#{$class}-#{$index} {
36
+ width: percentage(($index / $grid-columns));
37
+ }
38
+ }
39
+ @if ($type == push) and ($index > 0) {
40
+ .col-#{$class}-push-#{$index} {
41
+ left: percentage(($index / $grid-columns));
42
+ }
43
+ }
44
+ @if ($type == push) and ($index == 0) {
45
+ .col-#{$class}-push-0 {
46
+ left: auto;
47
+ }
48
+ }
49
+ @if ($type == pull) and ($index > 0) {
50
+ .col-#{$class}-pull-#{$index} {
51
+ right: percentage(($index / $grid-columns));
52
+ }
53
+ }
54
+ @if ($type == pull) and ($index == 0) {
55
+ .col-#{$class}-pull-0 {
56
+ right: auto;
57
+ }
58
+ }
59
+ @if ($type == offset) {
60
+ .col-#{$class}-offset-#{$index} {
61
+ margin-left: percentage(($index / $grid-columns));
62
+ }
63
+ }
64
+ }
65
+
66
+ // [converter] This is defined recursively in LESS, but Sass supports real loops
67
+ @mixin loop-grid-columns($columns, $class, $type) {
68
+ @for $i from 0 through $columns {
69
+ @include calc-grid-column($i, $class, $type);
70
+ }
71
+ }
72
+
73
+
74
+ // Create grid for specific class
75
+ @mixin make-grid($class) {
76
+ @include float-grid-columns($class);
77
+ @include loop-grid-columns($grid-columns, $class, width);
78
+ @include loop-grid-columns($grid-columns, $class, pull);
79
+ @include loop-grid-columns($grid-columns, $class, push);
80
+ @include loop-grid-columns($grid-columns, $class, offset);
81
+ }
@@ -0,0 +1,123 @@
1
+ // Grid system
2
+ //
3
+ // Generate semantic grid columns with these mixins.
4
+
5
+ // Centered container element
6
+ @mixin container-fixed($gutter: $grid-gutter-width) {
7
+ margin-right: auto;
8
+ margin-left: auto;
9
+ padding-left: ($gutter / 2);
10
+ padding-right: ($gutter / 2);
11
+ @include clearfix;
12
+ }
13
+
14
+ // Creates a wrapper for a series of columns
15
+ @mixin make-row($gutter: $grid-gutter-width) {
16
+ text-align: justify;
17
+ margin-left: ($gutter / -2);
18
+ margin-right: ($gutter / -2);
19
+ @include clearfix;
20
+ }
21
+
22
+ // Generate the extra small columns
23
+ @mixin make-xs-column($columns, $gutter: $grid-gutter-width) {
24
+ position: relative;
25
+ float: left;
26
+ width: percentage(($columns / $grid-columns));
27
+ min-height: 1px;
28
+ padding-left: ($gutter / 2);
29
+ padding-right: ($gutter / 2);
30
+ }
31
+ @mixin make-xs-column-offset($columns) {
32
+ margin-left: percentage(($columns / $grid-columns));
33
+ }
34
+ @mixin make-xs-column-push($columns) {
35
+ left: percentage(($columns / $grid-columns));
36
+ }
37
+ @mixin make-xs-column-pull($columns) {
38
+ right: percentage(($columns / $grid-columns));
39
+ }
40
+
41
+ // Generate the small columns
42
+ @mixin make-sm-column($columns, $gutter: $grid-gutter-width) {
43
+ position: relative;
44
+ min-height: 1px;
45
+ padding-left: ($gutter / 2);
46
+ padding-right: ($gutter / 2);
47
+
48
+ @media (min-width: $screen-sm-min) {
49
+ float: left;
50
+ width: percentage(($columns / $grid-columns));
51
+ }
52
+ }
53
+ @mixin make-sm-column-offset($columns) {
54
+ @media (min-width: $screen-sm-min) {
55
+ margin-left: percentage(($columns / $grid-columns));
56
+ }
57
+ }
58
+ @mixin make-sm-column-push($columns) {
59
+ @media (min-width: $screen-sm-min) {
60
+ left: percentage(($columns / $grid-columns));
61
+ }
62
+ }
63
+ @mixin make-sm-column-pull($columns) {
64
+ @media (min-width: $screen-sm-min) {
65
+ right: percentage(($columns / $grid-columns));
66
+ }
67
+ }
68
+
69
+ // Generate the medium columns
70
+ @mixin make-md-column($columns, $gutter: $grid-gutter-width) {
71
+ position: relative;
72
+ min-height: 1px;
73
+ padding-left: ($gutter / 2);
74
+ padding-right: ($gutter / 2);
75
+
76
+ @media (min-width: $screen-md-min) {
77
+ float: left;
78
+ width: percentage(($columns / $grid-columns));
79
+ }
80
+ }
81
+ @mixin make-md-column-offset($columns) {
82
+ @media (min-width: $screen-md-min) {
83
+ margin-left: percentage(($columns / $grid-columns));
84
+ }
85
+ }
86
+ @mixin make-md-column-push($columns) {
87
+ @media (min-width: $screen-md-min) {
88
+ left: percentage(($columns / $grid-columns));
89
+ }
90
+ }
91
+ @mixin make-md-column-pull($columns) {
92
+ @media (min-width: $screen-md-min) {
93
+ right: percentage(($columns / $grid-columns));
94
+ }
95
+ }
96
+
97
+ // Generate the large columns
98
+ @mixin make-lg-column($columns, $gutter: $grid-gutter-width) {
99
+ position: relative;
100
+ min-height: 1px;
101
+ padding-left: ($gutter / 2);
102
+ padding-right: ($gutter / 2);
103
+
104
+ @media (min-width: $screen-lg-min) {
105
+ float: left;
106
+ width: percentage(($columns / $grid-columns));
107
+ }
108
+ }
109
+ @mixin make-lg-column-offset($columns) {
110
+ @media (min-width: $screen-lg-min) {
111
+ margin-left: percentage(($columns / $grid-columns));
112
+ }
113
+ }
114
+ @mixin make-lg-column-push($columns) {
115
+ @media (min-width: $screen-lg-min) {
116
+ left: percentage(($columns / $grid-columns));
117
+ }
118
+ }
119
+ @mixin make-lg-column-pull($columns) {
120
+ @media (min-width: $screen-lg-min) {
121
+ right: percentage(($columns / $grid-columns));
122
+ }
123
+ }