blob: 55ca04e8ff8278f048dd75d5670100a223279fc7 (
plain)
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
|
@mixin apply-to-ie6-only {
* html {
@content;
}
}
@include apply-to-ie6-only {
#logo {
background-image: url(/logo.gif);
}
}
$color: white;
@mixin colors($color: blue) {
background-color: $color;
@content;
border-color: $color;
}
.colors {
@include colors { color: $color; }
}
@mixin iphone {
@media only screen and (max-width: 480px) {
@content;
}
}
@include iphone {
body { color: red }
}
#sidebar {
$sidebar-width: 300px;
width: $sidebar-width;
@include iphone {
width: $sidebar-width / 3;
}
}
@mixin respond-to($width) {
@media only screen and (min-width: $width) { @content; }
}
@include respond-to(40em) {
@for $i from 1 through 2 {
.grid-#{$i} { width: 100%; }
}
}
@include respond-to(40em) {
$i: 1;
@while $i <= 2 {
.grid-#{$i} { width: 100%; }
$i: $i + 1;
}
}
|