Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | /* |
michael@0 | 7 | This CSS stylesheet defines the rules to be applied to ImageDocuments that |
michael@0 | 8 | are top level (e.g. not iframes). |
michael@0 | 9 | */ |
michael@0 | 10 | |
michael@0 | 11 | @media not print { |
michael@0 | 12 | body { |
michael@0 | 13 | margin: 0; |
michael@0 | 14 | } |
michael@0 | 15 | |
michael@0 | 16 | img { |
michael@0 | 17 | text-align: center; |
michael@0 | 18 | position: absolute; |
michael@0 | 19 | margin: auto; |
michael@0 | 20 | top: 0; |
michael@0 | 21 | right: 0; |
michael@0 | 22 | bottom: 0; |
michael@0 | 23 | left: 0; |
michael@0 | 24 | } |
michael@0 | 25 | |
michael@0 | 26 | .completeRotation { |
michael@0 | 27 | transition: transform 0.3s ease 0s; |
michael@0 | 28 | } |
michael@0 | 29 | } |
michael@0 | 30 | |
michael@0 | 31 | img { |
michael@0 | 32 | image-orientation: from-image; |
michael@0 | 33 | } |