From 30d019983da3e99bfeee59f7f0bc534f6dc9e1d8 Mon Sep 17 00:00:00 2001 From: Natalie Downe Date: Sat, 23 May 2009 10:40:36 +0100 Subject: Inserting -moz alternative to -webkit transforms, also using straight 'transform' CSS 3 property --- css/print.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/css/print.css b/css/print.css index 4933b9c..216d62b 100644 --- a/css/print.css +++ b/css/print.css @@ -17,6 +17,8 @@ #page7, #page6 { -webkit-transform: translate(64.5px, -64.5px) rotate(-90deg); + -moz-transform: translate(64.5px, -64.5px) rotate(-90deg); + transform: translate(64.5px, -64.5px) rotate(-90deg); /*-webkit-transform:rotate(90deg) scale(0.6) skew(-23deg);*/ } @@ -26,6 +28,8 @@ #page4, #page5 { -webkit-transform: translate(-64.5px, -64.5px) rotate(90deg); + -moz-transform: translate(-64.5px, -64.5px) rotate(90deg); + transform: translate(-64.5px, -64.5px) rotate(90deg); } /* cover */ #page1 { -- cgit v1.2.3