Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | html, body { |
michael@0 | 6 | height: 100%; |
michael@0 | 7 | padding: 0; |
michael@0 | 8 | margin: 0; |
michael@0 | 9 | } |
michael@0 | 10 | |
michael@0 | 11 | body { |
michael@0 | 12 | display: flex; |
michael@0 | 13 | } |
michael@0 | 14 | |
michael@0 | 15 | #aboutAddonsTextTitle { |
michael@0 | 16 | font-weight: bold; |
michael@0 | 17 | } |
michael@0 | 18 | |
michael@0 | 19 | #floatingTextBox { |
michael@0 | 20 | flex: 1; |
michael@0 | 21 | |
michael@0 | 22 | position: relative; |
michael@0 | 23 | top: 20%; |
michael@0 | 24 | left: 60%; |
michael@0 | 25 | |
michael@0 | 26 | width: 375px; |
michael@0 | 27 | padding: 20px; |
michael@0 | 28 | font-family: "Segoe UI", sans-serif; |
michael@0 | 29 | font-size: 25px; |
michael@0 | 30 | text-align: left; |
michael@0 | 31 | word-wrap: normal; |
michael@0 | 32 | } |
michael@0 | 33 | |
michael@0 | 34 | #fox { |
michael@0 | 35 | flex: 1; |
michael@0 | 36 | background-image:url('chrome://browser/skin/images/aboutAddonsBackground.png'), url('chrome://browser/skin/images/aboutAddonsBackgroundFillSlice.png'); |
michael@0 | 37 | background-size: contain; |
michael@0 | 38 | background-position: bottom center; |
michael@0 | 39 | background-repeat: no-repeat, repeat-x; |
michael@0 | 40 | background-color: rgb(230, 230, 230); /*color hand sampled from image*/ |
michael@0 | 41 | |
michael@0 | 42 | } |
michael@0 | 43 | |
michael@0 | 44 | /* Snapped-view variation */ |
michael@0 | 45 | @media (max-width: 330px) { |
michael@0 | 46 | #floatingTextBox { |
michael@0 | 47 | top: 20%; |
michael@0 | 48 | left: 5%; |
michael@0 | 49 | width: 90%; |
michael@0 | 50 | padding: 0; |
michael@0 | 51 | } |
michael@0 | 52 | } |