| 1 |
div { |
| 2 |
color: blue; |
| 3 |
color: red; } |
| 4 |
div pre { |
| 5 |
height: 200px; } |
| 6 |
|
| 7 |
span { |
| 8 |
color: blue; } |
| 9 |
span div { |
| 10 |
height: 20px; } |
| 11 |
|
| 12 |
html { |
| 13 |
height: 43px; } |
| 14 |
|
| 15 |
del { |
| 16 |
height: 20px; } |
| 17 |
|
| 18 |
div { |
| 19 |
color: white; |
| 20 |
color: blue; |
| 21 |
color: white; } |
| 22 |
|
| 23 |
div { |
| 24 |
background-image: linear-gradient(left top, red, green); } |
| 25 |
|
| 26 |
div { |
| 27 |
-moz-box-shadow: 10px 10px 5px #888; |
| 28 |
-webkit-box-shadow: 10px 10px 5px #888; |
| 29 |
box-shadow: 10px 10px 5px #888; |
| 30 |
-moz-box-shadow: inset 10px 10px #888, -10px -10px #f4f4f4; |
| 31 |
-webkit-box-shadow: inset 10px 10px #888, -10px -10px #f4f4f4; |
| 32 |
box-shadow: inset 10px 10px #888, -10px -10px #f4f4f4; } |
| 33 |
|
| 34 |
div p { |
| 35 |
color: red; |
| 36 |
color: blue; } |
| 37 |
div p .class { |
| 38 |
color: red; } |
| 39 |
div p .class div { |
| 40 |
height: 20px; } |
| 41 |
div p div { |
| 42 |
height: 20px; } |
| 43 |
div p .top { |
| 44 |
top: 0; } |
| 45 |
div p .top div { |
| 46 |
color: red; } |
| 47 |
|
| 48 |
div.mixin-content-simple { |
| 49 |
color: red; } |
| 50 |
|
| 51 |
div.mixin-content-with-arg { |
| 52 |
background: blue; |
| 53 |
color: red; } |
| 54 |
|
| 55 |
div.mixin-content-with-arg { |
| 56 |
background: purple; |
| 57 |
height: 20px; } |
| 58 |
|
| 59 |
div.mixin-content-simple { |
| 60 |
height: 43px; } |
| 61 |
|
| 62 |
div.mixin-content-simple { |
| 63 |
color: orange; } |
| 64 |
div.mixin-content-simple div { |
| 65 |
height: 20px; } |
| 66 |
|
| 67 |
div.mixin-content-with-arg { |
| 68 |
background: purple; |
| 69 |
height: 43px; } |
| 70 |
|
| 71 |
div.mixin-content-with-arg { |
| 72 |
background: purple; |
| 73 |
color: orange; } |
| 74 |
div.mixin-content-with-arg div { |
| 75 |
height: 20px; } |
| 76 |
|
| 77 |
#please-wait { |
| 78 |
background: url(/images/logo.png); |
| 79 |
position: absolute; |
| 80 |
top: 1em; |
| 81 |
right: 0; |
| 82 |
bottom: 3em; |
| 83 |
left: 4em; } |
| 84 |
|