| OLD | NEW |
| 1 /* This Source Code Form is subject to the terms of the Mozilla Public | 1 /* This Source Code Form is subject to the terms of the Mozilla Public |
| 2 * License, v. 2.0. If a copy of the MPL was not distributed with this | 2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
| 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
| 4 | 4 |
| 5 body { | 5 body { |
| 6 -moz-text-size-adjust: none; | 6 -moz-text-size-adjust: none; |
| 7 font-family: "Clear Sans",sans-serif; | 7 font-family: "Clear Sans",sans-serif; |
| 8 font-size: 23px; | 8 font-size: 23px; |
| 9 color: #222222; | 9 color: #222222; |
| 10 background-color: #ced7de; | 10 background-color: #ced7de; |
| 11 } | 11 } |
| 12 | 12 |
| 13 #header { | 13 #header { |
| 14 height: 80px; | 14 min-height: 120px; |
| 15 } | 15 } |
| 16 | 16 |
| 17 #wordmark { | 17 #wordmark { |
| 18 margin: 30px 0 0 15px; | 18 margin: 50px 0 0 15px; |
| 19 width: 123px; | |
| 20 height: 36px; | |
| 21 background: url("chrome://browser/skin/images/wordmark-hdpi.png") no-repeat; | |
| 22 } | 19 } |
| 23 | 20 |
| 24 #version { | 21 #version { |
| 25 margin: 0 0 0 15px; | 22 margin: 0 0 0 15px; |
| 26 font-size: 15px; | 23 font-size: 15px; |
| 27 } | 24 } |
| 28 | 25 |
| 29 #banner { | 26 #banner { |
| 30 min-height: 150px; | 27 min-height: 300px; |
| 31 background-color: #bdc7ce; | 28 background: url("chrome://browser/skin/images/abb-logo.png") no-repeat; |
| 32 } | 29 background-position: right top; |
| 33 | |
| 34 #logo { | |
| 35 position: absolute; | |
| 36 top: 0; | |
| 37 right: 0; | |
| 38 width: 375px; | |
| 39 height: 300px; | |
| 40 background: url("chrome://browser/skin/images/logo-hdpi.png") no-repeat; | |
| 41 } | 30 } |
| 42 | 31 |
| 43 #updateBox { | 32 #updateBox { |
| 44 position: relative; | 33 position: relative; |
| 45 top: 40px; | 34 top: 40px; |
| 46 margin: 0 auto; | 35 margin: 0 auto; |
| 47 width: 60%; /* looks much larger!? */ | 36 width: 60%; /* looks much larger!? */ |
| 48 padding: 20px 1em; | 37 padding: 20px 1em; |
| 49 text-align: center; | 38 text-align: center; |
| 50 background-image: url("chrome://browser/skin/images/about-btn-darkgrey.png"); | 39 background-image: url("chrome://browser/skin/images/about-btn-darkgrey.png"); |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 | 97 |
| 109 a, span { | 98 a, span { |
| 110 text-decoration: none; | 99 text-decoration: none; |
| 111 color: #222222; | 100 color: #222222; |
| 112 } | 101 } |
| 113 | 102 |
| 114 #updateBox > a, | 103 #updateBox > a, |
| 115 #updateBox > span { | 104 #updateBox > span { |
| 116 color: #e5f2ff; | 105 color: #e5f2ff; |
| 117 } | 106 } |
| OLD | NEW |