droidcss 1.2.7 → 2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +3 -1
- data/lib/droidcss/version.rb +1 -1
- data/vendor/assets/stylesheets/droidcss/base.scss +1 -1
- data/vendor/assets/stylesheets/droidcss/mixins/grid-framework.scss +68 -0
- data/vendor/assets/stylesheets/droidcss/mixins/grid-utilities.scss +193 -0
- data/vendor/assets/stylesheets/droidcss/mixins/grid.scss +125 -0
- data/vendor/assets/stylesheets/droidcss/partials/grid.scss +68 -114
- data/vendor/assets/stylesheets/droidcss/partials/normalize.scss +47 -0
- data/vendor/assets/stylesheets/droidcss/partials/setup.scss +63 -32
- data/vendor/assets/stylesheets/droidcss.css +751 -504
- metadata +7 -4
- data/vendor/assets/stylesheets/droidcss/partials/reset.scss +0 -44
@@ -1,32 +1,63 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
$
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
$
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
$
|
17
|
-
$
|
18
|
-
$
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
1
|
+
//== Media queries breakpoints
|
2
|
+
//
|
3
|
+
//## Define the breakpoints at which your layout will change, adapting to different screen sizes.
|
4
|
+
|
5
|
+
// Extra small screen / phone
|
6
|
+
$screen-xs: 480px !default;
|
7
|
+
$screen-xs-min: $screen-xs !default;
|
8
|
+
$screen-phone: $screen-xs-min !default;
|
9
|
+
|
10
|
+
// Small screen / tablet
|
11
|
+
$screen-sm: 768px !default;
|
12
|
+
$screen-sm-min: $screen-sm !default;
|
13
|
+
$screen-tablet: $screen-sm-min !default;
|
14
|
+
|
15
|
+
// Medium screen / desktop
|
16
|
+
$screen-md: 992px !default;
|
17
|
+
$screen-md-min: $screen-md !default;
|
18
|
+
$screen-desktop: $screen-md-min !default;
|
19
|
+
|
20
|
+
// Large screen / wide desktop
|
21
|
+
$screen-lg: 1200px !default;
|
22
|
+
$screen-lg-min: $screen-lg !default;
|
23
|
+
$screen-lg-desktop: $screen-lg-min !default;
|
24
|
+
|
25
|
+
// So media queries don't overlap when required, provide a maximum
|
26
|
+
$screen-xs-max: ($screen-sm-min - 1) !default;
|
27
|
+
$screen-sm-max: ($screen-md-min - 1) !default;
|
28
|
+
$screen-md-max: ($screen-lg-min - 1) !default;
|
29
|
+
|
30
|
+
|
31
|
+
//== Grid system
|
32
|
+
//
|
33
|
+
//## Define your custom responsive grid.
|
34
|
+
|
35
|
+
//** Number of columns in the grid.
|
36
|
+
$grid-columns: 12 !default;
|
37
|
+
//** Padding between columns. Gets divided in half for the left and right.
|
38
|
+
$grid-gutter-width: 30px !default;
|
39
|
+
// Navbar collapse
|
40
|
+
//** Point at which the navbar becomes uncollapsed.
|
41
|
+
$grid-float-breakpoint: $screen-sm-min !default;
|
42
|
+
//** Point at which the navbar begins collapsing.
|
43
|
+
$grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default;
|
44
|
+
|
45
|
+
|
46
|
+
//== Container sizes
|
47
|
+
//
|
48
|
+
//## Define the maximum width of `.container` for different screen sizes.
|
49
|
+
|
50
|
+
// Small screen / tablet
|
51
|
+
$container-tablet: (720px + $grid-gutter-width) !default;
|
52
|
+
//** For `$screen-sm-min` and up.
|
53
|
+
$container-sm: $container-tablet !default;
|
54
|
+
|
55
|
+
// Medium screen / desktop
|
56
|
+
$container-desktop: (940px + $grid-gutter-width) !default;
|
57
|
+
//** For `$screen-md-min` and up.
|
58
|
+
$container-md: $container-desktop !default;
|
59
|
+
|
60
|
+
// Large screen / wide desktop
|
61
|
+
$container-large-desktop: (1140px + $grid-gutter-width) !default;
|
62
|
+
//** For `$screen-lg-min` and up.
|
63
|
+
$container-lg: $container-large-desktop !default;
|