File: atgroup_05.css

package info (click to toggle)
python-rcssmin 1%3A1.1.2-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,196 kB
  • sloc: python: 2,379; ansic: 1,216; sh: 110; makefile: 20
file content (31 lines) | stat: -rw-r--r-- 888 bytes parent folder | download | duplicates (9)
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
@media all and (min-width : 500px) {
    @document url(http://www.w3.org/),
                   url-prefix(http://www.w3.org/Style/),
                   domain(mozilla.org),
                   regexp("https:.*")
    {
        @supports ( (perspective: 10px) or (-moz-perspective: 10px) or (-webkit-perspective: 10px) or (-ms-perspective: 10px) or (-o-perspective: 10px) ) {
            @keyframes slidein {
                from {
                    margin-left : 100%;
                    width: 300%
                }
      
                75% {
                    font-size:300%;
                    margin-left:25%;
                    width:150%;
                }
      
                to {
                    margin-left:0%;
                    width:100%;
                }
            }

            @page :last {
                margin : 3in;
            }
        }
    }
}