| 1 |
@charset "hello-world"; |
| 2 |
@page : :left { |
| 3 |
div { |
| 4 |
color: red; } } |
| 5 |
|
| 6 |
@page test { { |
| 7 |
@media yes { |
| 8 |
div { |
| 9 |
color: red; } } } |
| 10 |
|
| 11 |
@media something { |
| 12 |
@page { { |
| 13 |
@media else { |
| 14 |
div { |
| 15 |
height: 200px; } } } } |
| 16 |
|
| 17 |
div { |
| 18 |
color: red; } |
| 19 |
@page yeah { { |
| 20 |
div pre { |
| 21 |
height: 20px; } } |
| 22 |
|
| 23 |
@font-face { |
| 24 |
color: red; |
| 25 |
height: 20px; } |
| 26 |
|
| 27 |
@keyframes 'bounce' { |
| 28 |
from { |
| 29 |
top: 100px; |
| 30 |
animation-timing-function: ease-out; } |
| 31 |
|
| 32 |
25% { |
| 33 |
top: 50px; |
| 34 |
animation-timing-function: ease-in; } |
| 35 |
|
| 36 |
50% { |
| 37 |
top: 100px; |
| 38 |
animation-timing-function: ease-out; } |
| 39 |
|
| 40 |
75% { |
| 41 |
top: 75px; |
| 42 |
animation-timing-function: ease-in; } |
| 43 |
|
| 44 |
to { |
| 45 |
top: 100px; } } |
| 46 |
|
| 47 |
@-webkit-keyframes flowouttoleft { |
| 48 |
0% { |
| 49 |
-webkit-transform: translateX(0) scale(1); } |
| 50 |
|
| 51 |
60%, 70% { |
| 52 |
-webkit-transform: translateX(0) scale(0.7); } |
| 53 |
|
| 54 |
100% { |
| 55 |
-webkit-transform: translateX(-100%) scale(0.7); } } |
| 56 |
|
| 57 |
div { |
| 58 |
animation-name: 'diagonal-slide'; |
| 59 |
animation-duration: 5s; |
| 60 |
animation-iteration-count: 10; } |
| 61 |
|
| 62 |
@keyframes 'diagonal-slide' { |
| 63 |
from { |
| 64 |
left: 0; |
| 65 |
top: 0; } |
| 66 |
|
| 67 |
to { |
| 68 |
left: 100px; |
| 69 |
top: 100px; } } |
| 70 |
|
| 71 |
@document url(http://www.w3.org/), |
| 72 |
url-prefix(http://www.w3.org/Style/), |
| 73 |
domain(mozilla.org), |
| 74 |
regexp("https:.*") { |
| 75 |
body { |
| 76 |
color: purple; |
| 77 |
background: yellow; } } |
| 78 |
|