blob: fc2bfdd78460cb22b07364387d7f42267bacbff8 [file] [log] [blame]
Chris Craikbeca7ae2015-04-07 13:29:55 -07001@media all and (min-width : 500px) {
2 @document url(http://www.w3.org/),
3 url-prefix(http://www.w3.org/Style/),
4 domain(mozilla.org),
5 regexp("https:.*")
6 {
7 @supports ( (perspective: 10px) or (-moz-perspective: 10px) or (-webkit-perspective: 10px) or (-ms-perspective: 10px) or (-o-perspective: 10px) ) {
8 @keyframes slidein {
9 from {
10 margin-left : 100%;
11 width: 300%
12 }
13
14 75% {
15 font-size:300%;
16 margin-left:25%;
17 width:150%;
18 }
19
20 to {
21 margin-left:0%;
22 width:100%;
23 }
24 }
25
26 @page :last {
27 margin : 3in;
28 }
29 }
30 }
31}