compass 0.13.alpha.6 → 0.13.alpha.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION.yml +1 -1
- data/frameworks/compass/stylesheets/compass/_support.scss +6 -6
- data/test/fixtures/stylesheets/compass/sass/support.scss +4 -4
- data/test/fixtures/stylesheets/compass/sass/utilities.scss +3 -3
- data/test/fixtures/stylesheets/compass/tmp/animation-with-legacy-ie.css +22 -0
- data/test/fixtures/stylesheets/compass/tmp/animation.css +22 -0
- data/test/fixtures/stylesheets/compass/tmp/appearance.css +3 -0
- data/test/fixtures/stylesheets/compass/tmp/background-clip.css +11 -0
- data/test/fixtures/stylesheets/compass/tmp/background-origin.css +11 -0
- data/test/fixtures/stylesheets/compass/tmp/background-size.css +17 -0
- data/test/fixtures/stylesheets/compass/tmp/border_radius.css +14 -0
- data/test/fixtures/stylesheets/compass/tmp/box-sizing.css +9 -0
- data/test/fixtures/stylesheets/compass/tmp/box.css +103 -0
- data/test/fixtures/stylesheets/compass/tmp/box_shadow.css +24 -0
- data/test/fixtures/stylesheets/compass/tmp/brightness.css +14 -0
- data/test/fixtures/stylesheets/compass/tmp/browser-support.css +306 -0
- data/test/fixtures/stylesheets/compass/tmp/color.css +18 -0
- data/test/fixtures/stylesheets/compass/tmp/columns.css +134 -0
- data/test/fixtures/stylesheets/compass/tmp/filters.css +29 -0
- data/test/fixtures/stylesheets/compass/tmp/flexbox.css +94 -0
- data/test/fixtures/stylesheets/compass/tmp/fonts.css +4 -0
- data/test/fixtures/stylesheets/compass/tmp/force-wrap.css +9 -0
- data/test/fixtures/stylesheets/compass/tmp/gradients.css +230 -0
- data/test/fixtures/stylesheets/compass/tmp/grid_background.css +64 -0
- data/test/fixtures/stylesheets/compass/tmp/hyphenation.css +16 -0
- data/test/fixtures/stylesheets/compass/tmp/image_size.css +15 -0
- data/test/fixtures/stylesheets/compass/tmp/images.css +8 -0
- data/test/fixtures/stylesheets/compass/tmp/layout.css +16 -0
- data/test/fixtures/stylesheets/compass/tmp/legacy_clearfix.css +26 -0
- data/test/fixtures/stylesheets/compass/tmp/lists.css +145 -0
- data/test/fixtures/stylesheets/compass/tmp/opacity.css +3 -0
- data/test/fixtures/stylesheets/compass/tmp/print.css +11 -0
- data/test/fixtures/stylesheets/compass/tmp/regions.css +9 -0
- data/test/fixtures/stylesheets/compass/tmp/replacement.css +59 -0
- data/test/fixtures/stylesheets/compass/tmp/reset.css +59 -0
- data/test/fixtures/stylesheets/compass/tmp/selection.css +50 -0
- data/test/fixtures/stylesheets/compass/tmp/sprites.css +1263 -0
- data/test/fixtures/stylesheets/compass/tmp/sprites_with_explicit_separator.css +16 -0
- data/test/fixtures/stylesheets/compass/tmp/stretching.css +66 -0
- data/test/fixtures/stylesheets/compass/tmp/support.css +59 -0
- data/test/fixtures/stylesheets/compass/tmp/text_shadow.css +29 -0
- data/test/fixtures/stylesheets/compass/tmp/transform.css +369 -0
- data/test/fixtures/stylesheets/compass/tmp/transition.css +116 -0
- data/test/fixtures/stylesheets/compass/tmp/typography/links/hover-link.css +4 -0
- data/test/fixtures/stylesheets/compass/tmp/units.css +30 -0
- data/test/fixtures/stylesheets/compass/tmp/user-interface.css +52 -0
- data/test/fixtures/stylesheets/compass/tmp/utilities.css +71 -0
- data/test/fixtures/stylesheets/compass/tmp/vertical_rhythm.css +211 -0
- data/test/fixtures/stylesheets/envtest/tmp/env.css +1 -1
- data/test/integrations/sprites_test.rb +3 -3
- metadata +91 -3
@@ -0,0 +1,116 @@
|
|
1
|
+
.single-transition-without-delay {
|
2
|
+
-moz-transition: all 0.6s ease-out;
|
3
|
+
-o-transition: all 0.6s ease-out;
|
4
|
+
-webkit-transition: all 0.6s ease-out;
|
5
|
+
transition: all 0.6s ease-out; }
|
6
|
+
|
7
|
+
.single-transition-with-delay {
|
8
|
+
-moz-transition: all 0.6s ease-out 0.2s;
|
9
|
+
-o-transition: all 0.6s ease-out 0.2s;
|
10
|
+
-webkit-transition: all 0.6s ease-out;
|
11
|
+
-webkit-transition-delay: 0.2s;
|
12
|
+
transition: all 0.6s ease-out 0.2s; }
|
13
|
+
|
14
|
+
.transition-duration-list {
|
15
|
+
-moz-transition-duration: 0.2s, 0.5s, 0.2s;
|
16
|
+
-o-transition-duration: 0.2s, 0.5s, 0.2s;
|
17
|
+
-webkit-transition-duration: 0.2s, 0.5s, 0.2s;
|
18
|
+
transition-duration: 0.2s, 0.5s, 0.2s; }
|
19
|
+
|
20
|
+
.multiple-transition-durations {
|
21
|
+
-moz-transition-duration: 0.2s, 0.5s, 0.2s;
|
22
|
+
-o-transition-duration: 0.2s, 0.5s, 0.2s;
|
23
|
+
-webkit-transition-duration: 0.2s, 0.5s, 0.2s;
|
24
|
+
transition-duration: 0.2s, 0.5s, 0.2s; }
|
25
|
+
|
26
|
+
.single-transform-transition-without-delay {
|
27
|
+
-moz-transition: -moz-transform 0.6s ease-out;
|
28
|
+
-o-transition: -o-transform 0.6s ease-out;
|
29
|
+
-webkit-transition: -webkit-transform 0.6s ease-out;
|
30
|
+
transition: transform 0.6s ease-out; }
|
31
|
+
|
32
|
+
.single-transform-transition-with-delay {
|
33
|
+
-moz-transition: -moz-transform 0.6s ease-out 0.2s;
|
34
|
+
-o-transition: -o-transform 0.6s ease-out 0.2s;
|
35
|
+
-webkit-transition: -webkit-transform 0.6s ease-out;
|
36
|
+
-webkit-transition-delay: 0.2s;
|
37
|
+
transition: transform 0.6s ease-out 0.2s; }
|
38
|
+
|
39
|
+
.transform-transition {
|
40
|
+
-moz-transition: -moz-transform 0.6s ease-out;
|
41
|
+
-o-transition: -o-transform 0.6s ease-out;
|
42
|
+
-webkit-transition: -webkit-transform 0.6s ease-out;
|
43
|
+
transition: transform 0.6s ease-out; }
|
44
|
+
|
45
|
+
.multiple-transitions {
|
46
|
+
-moz-transition: -moz-transform 0.6s ease-out opacity 0.2s ease-in;
|
47
|
+
-o-transition: -o-transform 0.6s ease-out opacity 0.2s ease-in;
|
48
|
+
-webkit-transition: -webkit-transform 0.6s ease-out opacity 0.2s ease-in;
|
49
|
+
transition: transform 0.6s ease-out opacity 0.2s ease-in; }
|
50
|
+
|
51
|
+
.transition-property {
|
52
|
+
-moz-transition-property: -moz-transform;
|
53
|
+
-o-transition-property: -o-transform;
|
54
|
+
-webkit-transition-property: -webkit-transform;
|
55
|
+
transition-property: transform; }
|
56
|
+
|
57
|
+
.transition-properties {
|
58
|
+
-moz-transition-property: -moz-transform, opacity, width, height, left, top;
|
59
|
+
-o-transition-property: -o-transform, opacity, width, height, left, top;
|
60
|
+
-webkit-transition-property: -webkit-transform, opacity, width, height, left, top;
|
61
|
+
transition-property: transform, opacity, width, height, left, top; }
|
62
|
+
|
63
|
+
.multiple-transition-properties {
|
64
|
+
-moz-transition-property: opacity, -moz-transform, left;
|
65
|
+
-o-transition-property: opacity, -o-transform, left;
|
66
|
+
-webkit-transition-property: opacity, -webkit-transform, left;
|
67
|
+
transition-property: opacity, transform, left; }
|
68
|
+
|
69
|
+
.default-transition {
|
70
|
+
-moz-transition: all 1s;
|
71
|
+
-o-transition: all 1s;
|
72
|
+
-webkit-transition: all 1s;
|
73
|
+
transition: all 1s; }
|
74
|
+
|
75
|
+
.transition-timing {
|
76
|
+
-moz-transition-timing-function: ease-in;
|
77
|
+
-o-transition-timing-function: ease-in;
|
78
|
+
-webkit-transition-timing-function: ease-in;
|
79
|
+
transition-timing-function: ease-in; }
|
80
|
+
|
81
|
+
.transition-timings {
|
82
|
+
-moz-transition-timing-function: ease-in, cubic-bezier(1, 0, 1, 0);
|
83
|
+
-o-transition-timing-function: ease-in, cubic-bezier(1, 0, 1, 0);
|
84
|
+
-webkit-transition-timing-function: ease-in, cubic-bezier(1, 0, 1, 0);
|
85
|
+
transition-timing-function: ease-in, cubic-bezier(1, 0, 1, 0); }
|
86
|
+
|
87
|
+
.transition-timings-list {
|
88
|
+
-moz-transition-timing-function: ease-in, cubic-bezier(1, 0, 1, 0);
|
89
|
+
-o-transition-timing-function: ease-in, cubic-bezier(1, 0, 1, 0);
|
90
|
+
-webkit-transition-timing-function: ease-in, cubic-bezier(1, 0, 1, 0);
|
91
|
+
transition-timing-function: ease-in, cubic-bezier(1, 0, 1, 0); }
|
92
|
+
|
93
|
+
.transition-delay {
|
94
|
+
-moz-transition-delay: 1s;
|
95
|
+
-o-transition-delay: 1s;
|
96
|
+
-webkit-transition-delay: 1s;
|
97
|
+
transition-delay: 1s; }
|
98
|
+
|
99
|
+
.transition-delays {
|
100
|
+
-moz-transition-delay: 1s, 2s, 3s;
|
101
|
+
-o-transition-delay: 1s, 2s, 3s;
|
102
|
+
-webkit-transition-delay: 1s, 2s, 3s;
|
103
|
+
transition-delay: 1s, 2s, 3s; }
|
104
|
+
|
105
|
+
.transition-delays-list {
|
106
|
+
-moz-transition-delay: 1s, 2s, 3s;
|
107
|
+
-o-transition-delay: 1s, 2s, 3s;
|
108
|
+
-webkit-transition-delay: 1s, 2s, 3s;
|
109
|
+
transition-delay: 1s, 2s, 3s; }
|
110
|
+
|
111
|
+
.regression-912 {
|
112
|
+
-moz-transition: background-color, 0.5s, ease-in, 0s width 0.5s ease-out 0s height 0.5s ease-in 0s top 0.5s ease-out 0s;
|
113
|
+
-o-transition: background-color, 0.5s, ease-in, 0s width 0.5s ease-out 0s height 0.5s ease-in 0s top 0.5s ease-out 0s;
|
114
|
+
-webkit-transition: background-color, 0.5s, ease-in, 0s width 0.5s ease-out 0s height 0.5s ease-in 0s;
|
115
|
+
-webkit-transition-delay: top 0.5s ease-out 0s;
|
116
|
+
transition: background-color 0.5s ease-in 0s width 0.5s ease-out 0s height 0.5s ease-in 0s top 0.5s ease-out 0s; }
|
@@ -0,0 +1,30 @@
|
|
1
|
+
.foo {
|
2
|
+
width: 600px;
|
3
|
+
height: 200px; }
|
4
|
+
|
5
|
+
.foo .test {
|
6
|
+
/* 16px for margins should be 1em */
|
7
|
+
margin-top: 1em;
|
8
|
+
/* 16px for margins should be 2.66667% (relative to parent's width) */
|
9
|
+
margin-right: 2.66667%;
|
10
|
+
/* 1.35em for margins should be 3.6% (relative to parent's width,
|
11
|
+
* even for top and bottom margins) */
|
12
|
+
margin-bottom: 3.6%;
|
13
|
+
/* 16px for margins should be 2ex */
|
14
|
+
margin-left: 2ex; }
|
15
|
+
|
16
|
+
.bar {
|
17
|
+
font-size: 18px;
|
18
|
+
width: 360px; }
|
19
|
+
|
20
|
+
.bar .test {
|
21
|
+
/* 150% for line-height should be 27px */
|
22
|
+
line-height: 27px;
|
23
|
+
/* 1px should always be .0625rem for this page */
|
24
|
+
border-top: 0.0625rem;
|
25
|
+
/* 2em for this element should be 9.525mm (relative to own font-size, as inherited) */
|
26
|
+
margin-top: 9.525mm;
|
27
|
+
/* 2px for margins should be .55556% (relative to parent's width) */
|
28
|
+
margin-right: 0.55556%;
|
29
|
+
/* 1rem should always be 16px for this page, even when own font-size is 18px */
|
30
|
+
margin-bottom: 16px; }
|
@@ -0,0 +1,52 @@
|
|
1
|
+
.user-select {
|
2
|
+
-moz-user-select: -moz-none;
|
3
|
+
-ms-user-select: none;
|
4
|
+
-webkit-user-select: none;
|
5
|
+
user-select: none; }
|
6
|
+
|
7
|
+
*:-moz-placeholder {
|
8
|
+
color: #bfbfbf;
|
9
|
+
font-style: italic; }
|
10
|
+
*::-moz-placeholder {
|
11
|
+
color: #bfbfbf;
|
12
|
+
font-style: italic; }
|
13
|
+
*:-ms-input-placeholder {
|
14
|
+
color: #bfbfbf;
|
15
|
+
font-style: italic; }
|
16
|
+
*::-webkit-input-placeholder {
|
17
|
+
color: #bfbfbf;
|
18
|
+
font-style: italic; }
|
19
|
+
|
20
|
+
input:-moz-placeholder, textarea:-moz-placeholder {
|
21
|
+
color: #bfbfbf;
|
22
|
+
font-style: italic; }
|
23
|
+
input::-moz-placeholder, textarea::-moz-placeholder {
|
24
|
+
color: #bfbfbf;
|
25
|
+
font-style: italic; }
|
26
|
+
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
|
27
|
+
color: #bfbfbf;
|
28
|
+
font-style: italic; }
|
29
|
+
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
|
30
|
+
color: #bfbfbf;
|
31
|
+
font-style: italic; }
|
32
|
+
|
33
|
+
.sets-up-browser-support-for-content:-moz-placeholder {
|
34
|
+
prefix: -moz;
|
35
|
+
-moz-prefix: true;
|
36
|
+
-ms-prefix: false;
|
37
|
+
-webkit-prefix: false; }
|
38
|
+
.sets-up-browser-support-for-content::-moz-placeholder {
|
39
|
+
prefix: -moz;
|
40
|
+
-moz-prefix: true;
|
41
|
+
-ms-prefix: false;
|
42
|
+
-webkit-prefix: false; }
|
43
|
+
.sets-up-browser-support-for-content:-ms-input-placeholder {
|
44
|
+
prefix: -ms;
|
45
|
+
-moz-prefix: false;
|
46
|
+
-ms-prefix: true;
|
47
|
+
-webkit-prefix: false; }
|
48
|
+
.sets-up-browser-support-for-content::-webkit-input-placeholder {
|
49
|
+
prefix: -webkit;
|
50
|
+
-moz-prefix: false;
|
51
|
+
-ms-prefix: false;
|
52
|
+
-webkit-prefix: true; }
|
@@ -0,0 +1,71 @@
|
|
1
|
+
.clearfix {
|
2
|
+
overflow: hidden;
|
3
|
+
*zoom: 1; }
|
4
|
+
|
5
|
+
.pie-clearfix {
|
6
|
+
*zoom: 1; }
|
7
|
+
.pie-clearfix:after {
|
8
|
+
content: "\0020";
|
9
|
+
display: block;
|
10
|
+
height: 0;
|
11
|
+
clear: both;
|
12
|
+
overflow: hidden;
|
13
|
+
visibility: hidden; }
|
14
|
+
|
15
|
+
.simple-pie-clearfix {
|
16
|
+
*zoom: 1; }
|
17
|
+
.simple-pie-clearfix:after {
|
18
|
+
content: "";
|
19
|
+
display: table;
|
20
|
+
clear: both; }
|
21
|
+
|
22
|
+
p.light {
|
23
|
+
background-color: #f3aead;
|
24
|
+
color: black; }
|
25
|
+
|
26
|
+
p.dark {
|
27
|
+
background-color: #a22321;
|
28
|
+
color: white; }
|
29
|
+
|
30
|
+
p.light-with-args {
|
31
|
+
background-color: #f3aead;
|
32
|
+
color: blue; }
|
33
|
+
|
34
|
+
p.dark-with-args {
|
35
|
+
background-color: #a22321;
|
36
|
+
color: yellow; }
|
37
|
+
|
38
|
+
th {
|
39
|
+
background-color: white; }
|
40
|
+
th.even, th:nth-child(2n) {
|
41
|
+
background-color: yellow; }
|
42
|
+
|
43
|
+
tr.odd td, tr:nth-child(2n+1) td {
|
44
|
+
background-color: white; }
|
45
|
+
tr.odd td.even, tr.odd td:nth-child(2n), tr:nth-child(2n+1) td.even, tr:nth-child(2n+1) td:nth-child(2n) {
|
46
|
+
background-color: yellow; }
|
47
|
+
|
48
|
+
tr.even td {
|
49
|
+
background-color: red; }
|
50
|
+
tr.even td.even, tr.even td:nth-child(2n) {
|
51
|
+
background-color: red; }
|
52
|
+
|
53
|
+
tfoot th, tfoot td {
|
54
|
+
background-color: white; }
|
55
|
+
tfoot th.even, tfoot th:nth-child(2n), tfoot td.even, tfoot td:nth-child(2n) {
|
56
|
+
background-color: yellow; }
|
57
|
+
|
58
|
+
p.ellipsis {
|
59
|
+
white-space: nowrap;
|
60
|
+
overflow: hidden;
|
61
|
+
-ms-text-overflow: ellipsis;
|
62
|
+
-o-text-overflow: ellipsis;
|
63
|
+
text-overflow: ellipsis; }
|
64
|
+
|
65
|
+
p.ellipsis.moz {
|
66
|
+
white-space: nowrap;
|
67
|
+
overflow: hidden;
|
68
|
+
-ms-text-overflow: ellipsis;
|
69
|
+
-o-text-overflow: ellipsis;
|
70
|
+
text-overflow: ellipsis;
|
71
|
+
-moz-binding: url('/tmp/xml/ellipsis.xml#ellipsis'); }
|
@@ -0,0 +1,211 @@
|
|
1
|
+
html {
|
2
|
+
font-size: 87.5%;
|
3
|
+
line-height: 1.14286em; }
|
4
|
+
|
5
|
+
.small {
|
6
|
+
font-size: 0.85714em;
|
7
|
+
line-height: 1.33333em; }
|
8
|
+
|
9
|
+
.padded {
|
10
|
+
margin-top: 1.14286em;
|
11
|
+
padding-top: 1.14286em;
|
12
|
+
padding-bottom: 1.14286em;
|
13
|
+
margin-bottom: 1.14286em; }
|
14
|
+
|
15
|
+
.small-padded {
|
16
|
+
font-size: 0.85714em;
|
17
|
+
line-height: 1.33333em;
|
18
|
+
margin-top: 1.33333em;
|
19
|
+
padding-top: 1.33333em;
|
20
|
+
padding-bottom: 1.33333em;
|
21
|
+
margin-bottom: 1.33333em; }
|
22
|
+
|
23
|
+
.borders {
|
24
|
+
border-top-width: 0.07143em;
|
25
|
+
border-top-style: solid;
|
26
|
+
padding-top: 1.07143em;
|
27
|
+
border-bottom-width: 0.07143em;
|
28
|
+
border-bottom-style: solid;
|
29
|
+
padding-bottom: 1.07143em; }
|
30
|
+
|
31
|
+
.large-borders {
|
32
|
+
font-size: 1.71429em;
|
33
|
+
line-height: 2em;
|
34
|
+
border-top-width: 0.25em;
|
35
|
+
border-top-style: solid;
|
36
|
+
padding-top: 0.41667em;
|
37
|
+
border-bottom-width: 0.25em;
|
38
|
+
border-bottom-style: solid;
|
39
|
+
padding-bottom: 0.41667em; }
|
40
|
+
|
41
|
+
.reset {
|
42
|
+
line-height: 1.14286em; }
|
43
|
+
|
44
|
+
/* New test using em output */
|
45
|
+
html {
|
46
|
+
font-size: 112.5%;
|
47
|
+
line-height: 1.4em; }
|
48
|
+
|
49
|
+
.container {
|
50
|
+
background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%);
|
51
|
+
background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%);
|
52
|
+
background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%);
|
53
|
+
background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%);
|
54
|
+
-moz-background-size: 100% 1.4em;
|
55
|
+
-o-background-size: 100% 1.4em;
|
56
|
+
-webkit-background-size: 100% 1.4em;
|
57
|
+
background-size: 100% 1.4em;
|
58
|
+
background-position: left top; }
|
59
|
+
|
60
|
+
p {
|
61
|
+
margin-top: 1.4em;
|
62
|
+
margin-bottom: 1.4em; }
|
63
|
+
|
64
|
+
th,
|
65
|
+
td {
|
66
|
+
padding-top: 0.35em;
|
67
|
+
padding-bottom: 0.35em; }
|
68
|
+
|
69
|
+
.caption {
|
70
|
+
font-size: 0.72222em;
|
71
|
+
line-height: 1.55077em; }
|
72
|
+
|
73
|
+
.spaced-out {
|
74
|
+
line-height: 2.1em; }
|
75
|
+
|
76
|
+
blockquote {
|
77
|
+
margin-top: 1.4em;
|
78
|
+
margin-bottom: 1.4em;
|
79
|
+
padding: 0 1.4em; }
|
80
|
+
|
81
|
+
.fig-quote > blockquote {
|
82
|
+
margin-bottom: 0.7em; }
|
83
|
+
.fig-quote .source {
|
84
|
+
font-size: 0.72222em;
|
85
|
+
line-height: 1.93846em;
|
86
|
+
margin-bottom: 0.96923em; }
|
87
|
+
|
88
|
+
.panel {
|
89
|
+
font-size: 0.88889em;
|
90
|
+
line-height: 1.575em;
|
91
|
+
border-width: 0.0625em;
|
92
|
+
border-style: solid;
|
93
|
+
border-color: #aaaaaa;
|
94
|
+
padding: 1.5125em; }
|
95
|
+
|
96
|
+
/* New using rem output with pixel fallbacks */
|
97
|
+
html {
|
98
|
+
font-size: 112.5%;
|
99
|
+
line-height: 1.4em; }
|
100
|
+
|
101
|
+
.container {
|
102
|
+
background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%);
|
103
|
+
background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%);
|
104
|
+
background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%);
|
105
|
+
background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%);
|
106
|
+
-moz-background-size: 100% 1.4rem;
|
107
|
+
-o-background-size: 100% 1.4rem;
|
108
|
+
-webkit-background-size: 100% 1.4rem;
|
109
|
+
background-size: 100% 1.4rem;
|
110
|
+
background-position: left top; }
|
111
|
+
|
112
|
+
p {
|
113
|
+
margin-top: 25px;
|
114
|
+
margin-top: 1.4rem;
|
115
|
+
margin-bottom: 25px;
|
116
|
+
margin-bottom: 1.4rem; }
|
117
|
+
|
118
|
+
th,
|
119
|
+
td {
|
120
|
+
padding-top: 6px;
|
121
|
+
padding-top: 0.35rem;
|
122
|
+
padding-bottom: 6px;
|
123
|
+
padding-bottom: 0.35rem; }
|
124
|
+
|
125
|
+
/* Incremental leading made easy! */
|
126
|
+
.caption {
|
127
|
+
font-size: 15px;
|
128
|
+
font-size: 0.85rem;
|
129
|
+
line-height: 20px;
|
130
|
+
line-height: 1.12rem; }
|
131
|
+
|
132
|
+
.spaced-out {
|
133
|
+
line-height: 38px;
|
134
|
+
line-height: 2.1rem; }
|
135
|
+
|
136
|
+
blockquote {
|
137
|
+
margin-top: 25px;
|
138
|
+
margin-top: 1.4rem;
|
139
|
+
margin-bottom: 25px;
|
140
|
+
margin-bottom: 1.4rem;
|
141
|
+
padding: 0 1.4rem; }
|
142
|
+
|
143
|
+
.fig-quote > blockquote {
|
144
|
+
margin-bottom: 13px;
|
145
|
+
margin-bottom: 0.7rem; }
|
146
|
+
.fig-quote .source {
|
147
|
+
font-size: 15px;
|
148
|
+
font-size: 0.85rem;
|
149
|
+
line-height: 25px;
|
150
|
+
line-height: 1.4rem;
|
151
|
+
margin-bottom: 13px;
|
152
|
+
margin-bottom: 0.7rem; }
|
153
|
+
|
154
|
+
.panel {
|
155
|
+
border-width: 1px;
|
156
|
+
border-width: 0.05556rem;
|
157
|
+
border-style: solid;
|
158
|
+
border-color: #aaaaaa;
|
159
|
+
padding: 24px;
|
160
|
+
padding: 1.34444rem; }
|
161
|
+
|
162
|
+
/* New using px output */
|
163
|
+
html {
|
164
|
+
font-size: 18px;
|
165
|
+
line-height: 25px; }
|
166
|
+
|
167
|
+
.container {
|
168
|
+
background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%);
|
169
|
+
background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%);
|
170
|
+
background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%);
|
171
|
+
background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%);
|
172
|
+
-moz-background-size: 100% 25px;
|
173
|
+
-o-background-size: 100% 25px;
|
174
|
+
-webkit-background-size: 100% 25px;
|
175
|
+
background-size: 100% 25px;
|
176
|
+
background-position: left top; }
|
177
|
+
|
178
|
+
p {
|
179
|
+
margin-top: 25px;
|
180
|
+
margin-bottom: 25px; }
|
181
|
+
|
182
|
+
th,
|
183
|
+
td {
|
184
|
+
padding-top: 6px;
|
185
|
+
padding-bottom: 6px; }
|
186
|
+
|
187
|
+
/* Incremental leading made easy! */
|
188
|
+
.caption {
|
189
|
+
font-size: 15px;
|
190
|
+
line-height: 20px; }
|
191
|
+
|
192
|
+
.spaced-out {
|
193
|
+
line-height: 37px; }
|
194
|
+
|
195
|
+
blockquote {
|
196
|
+
margin-top: 25px;
|
197
|
+
margin-bottom: 25px;
|
198
|
+
padding: 0 25px; }
|
199
|
+
|
200
|
+
.fig-quote > blockquote {
|
201
|
+
margin-bottom: 12px; }
|
202
|
+
.fig-quote .source {
|
203
|
+
font-size: 15px;
|
204
|
+
line-height: 25px;
|
205
|
+
margin-bottom: 12px; }
|
206
|
+
|
207
|
+
.panel {
|
208
|
+
border-width: 1px;
|
209
|
+
border-style: solid;
|
210
|
+
border-color: #aaaaaa;
|
211
|
+
padding: 24px; }
|