1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/mobile/android/themes/core/aboutPrivateBrowsing.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,71 @@ 1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.7 + 1.8 +body { 1.9 + font-family: "Clear Sans",sans-serif; 1.10 + font-size: 14px; 1.11 +} 1.12 + 1.13 +body.normal .showPrivate, 1.14 +body.private .showNormal { 1.15 + display: none; 1.16 +} 1.17 + 1.18 +div.contentSection { 1.19 + width: 92%; 1.20 + max-width: 400px; 1.21 + margin: 0 auto; 1.22 +} 1.23 + 1.24 +body.private { 1.25 + color: #9ba3ab; 1.26 + background-color: #292c29; 1.27 +} 1.28 + 1.29 +body.normal { 1.30 + color: #222; 1.31 + background-color: #ced7de; 1.32 +} 1.33 + 1.34 +h1 { 1.35 + font-size: 24px; 1.36 + font-weight: 100; 1.37 + text-align: center; 1.38 + margin: 0; 1.39 +} 1.40 + 1.41 +body.private h1 { 1.42 + color: #d06bff; 1.43 +} 1.44 + 1.45 +img { 1.46 + display: block; 1.47 + width: 125px; 1.48 + height: auto; 1.49 + margin: 0 auto; 1.50 +} 1.51 + 1.52 +@media all and (max-height: 399px) { 1.53 + body { 1.54 + margin-top: 25px; 1.55 + } 1.56 +} 1.57 + 1.58 +@media all and (min-height: 400px) and (max-height: 599px) { 1.59 + body { 1.60 + margin-top: 50px; 1.61 + } 1.62 +} 1.63 + 1.64 +@media all and (min-height: 600px) and (max-height: 799px) { 1.65 + body { 1.66 + margin-top: 150px; 1.67 + } 1.68 +} 1.69 + 1.70 +@media all and (min-height: 800px) { 1.71 + body { 1.72 + margin-top: 250px; 1.73 + } 1.74 +}