Subversion Repository Public Repository

Nextrek

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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
3.4.7 (Selective Steve)
950898b9135dffc94e24873607aff74dea1e2395
o:Sass::Tree::RootNode:@children[o:Sass::Tree::CommentNode
:@value[I"8/*/ Makes an element a outer container by centring it in the viewport, clearing its floats, and setting its `max-width`.
 */ Although optional, using `outer-container` is recommended. The mixin can be called on more than one element per page, as long as they are not nested.
 */
 */ @param {Number (unit)} $local-max-width ($max-width)
 */   Max width to be applied to the element. Can be a percentage or a measure.
 */
 */ @example scss - Usage
 */   .element {
 */     @include outer-container(100%);
 */   }
 */
 */ @example css - CSS Output
 */   .element {
 */     *zoom: 1;
 */     max-width: 100%;
 */     margin-left: auto;
 */     margin-right: auto;
 */   }
 */
 */   .element:before, .element:after {
 */     content: " ";
 */     display: table;
 */   }
 */
 */   .element:after {
 */     clear: both;
 */   } */:ET:
@type:silent;[:
@linei:
@options{o:Sass::Tree::MixinDefNode
:
@nameI"outer-container;	T:
@args[[o:!Sass::Script::Tree::Variable;I"local-max-width;	T:@underscored_nameI"local_max_width;	T;i":@source_rangeo:Sass::Source::Range	:@start_poso:Sass::Source::Position;i":@offseti:
@end_poso;;i";i-:
@fileI"1sass/plug-in/neat/grid/_outer-container.scss;	T:@importero: Sass::Importers::Filesystem:
@rootI"&/Volumes/Works/htdocs/aiba/public;	T:@real_rootI"&/Volumes/Works/htdocs/aiba/public;	T:@same_name_warningso:Set:
@hash{:@filename@;
@o;;I"max-width;	T;I"max_width;	T;i";o;	;o;;i";i/;o;;i";i9;@;@;!@;
@:@splat0;[o:Sass::Tree::MixinNode;I"
clearfix;	T;[:@keywords{;"0:@kwarg_splat0;[;i#;o;	;o;;i#;i;o;;i#;i;@;@;
@o:Sass::Tree::PropNode;[I"max-width;	T;o;;I"local-max-width;	T;I"local_max_width;	T;i$;o;	;o;;i$;i;o;;i$;i#;@;@;!@;
@:
@tabsi:@prop_syntax:new;[;i$;o;	;o;;i$;i;o;;i$;i#;@;@:@name_source_rangeo;	;@6;o;;i$;i;@;@:@value_source_rangeo;	;o;;i$;i;@7;@;@;
@o;&;[I"margin;	T;o: Sass::Script::Tree::Literal;o: Sass::Script::Value::String;I";	T;
:identifier;
@;i%;o;	;o;;i%;i;o;;i%;i;@;@;'i;(;);[o;&;[I"	left;	T;o;,;o;-;I"	auto;	T;
;.;
@;i&;o;	;o;;i&;i;o;;i&;i;@;@;'i;(;);[;i&;o;	;o;;i&;i
;o;;i&;i;@;@;*o;	;@Q;o;;i&;i;@;@;+o;	;o;;i&;i;@R;@;@;
@o;&;[I"
right;	T;o;,;o;-;I"	auto;	T;
;.;
@;i';o;	;o;;i';i;o;;i';i;@;@;'i;(;);[;i';o;	;o;;i';i
;o;;i';i;@;@;*o;	;@b;o;;i';i;@;@;+o;	;o;;i';i;@c;@;@;
@;i%;o;	;o;;i%;i;o;;i%;i;@;@;*o;	;@i;o;;i%;i;@;@;+o;	;o;;i%;i;@j;@;@;
@:@has_childrenT;i";o;	;o;;i";i;o;;i";i;;@;@;/T;
@:@templateI"�/// Makes an element a outer container by centring it in the viewport, clearing its floats, and setting its `max-width`.
/// Although optional, using `outer-container` is recommended. The mixin can be called on more than one element per page, as long as they are not nested.
///
/// @param {Number (unit)} $local-max-width ($max-width)
///   Max width to be applied to the element. Can be a percentage or a measure.
///
/// @example scss - Usage
///   .element {
///     @include outer-container(100%);
///   }
///
/// @example css - CSS Output
///   .element {
///     *zoom: 1;
///     max-width: 100%;
///     margin-left: auto;
///     margin-right: auto;
///   }
///
///   .element:before, .element:after {
///     content: " ";
///     display: table;
///   }
///
///   .element:after {
///     clear: both;
///   }

@mixin outer-container($local-max-width: $max-width) {
  @include clearfix;
  max-width: $local-max-width;
  margin: {
    left: auto;
    right: auto;
  }
}
;	T;i;o;	;o;;i;i;o;;i;i;@;@;/T;
@

Commits for Nextrek/Aiba_backup/public/.sass-cache/f3c1918b0163f920cb6704bbdcfb2e85ae0f803b/_outer-container.scssc

Diff revisions: vs.
Revision Author Commited Message
1464 MOliva picture MOliva Tue 13 Oct, 2020 11:16:56 +0000