browser/metro/theme/aboutAddons.css

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/browser/metro/theme/aboutAddons.css	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,52 @@
     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 +html, body {
     1.9 +  height: 100%;
    1.10 +  padding: 0;
    1.11 +  margin: 0;
    1.12 +}
    1.13 +
    1.14 +body {
    1.15 +  display: flex;
    1.16 +}
    1.17 +
    1.18 +#aboutAddonsTextTitle {
    1.19 +  font-weight: bold;
    1.20 +}
    1.21 +
    1.22 +#floatingTextBox {
    1.23 +  flex: 1;
    1.24 +  
    1.25 +  position: relative;
    1.26 +  top: 20%;
    1.27 +  left: 60%;
    1.28 +
    1.29 +  width: 375px;
    1.30 +  padding: 20px;
    1.31 +  font-family: "Segoe UI", sans-serif;
    1.32 +  font-size: 25px;
    1.33 +  text-align: left;
    1.34 +  word-wrap: normal;
    1.35 +}
    1.36 +
    1.37 +#fox {
    1.38 +  flex: 1;
    1.39 +  background-image:url('chrome://browser/skin/images/aboutAddonsBackground.png'), url('chrome://browser/skin/images/aboutAddonsBackgroundFillSlice.png');
    1.40 +  background-size: contain;
    1.41 +  background-position: bottom center;
    1.42 +  background-repeat: no-repeat, repeat-x;
    1.43 +  background-color: rgb(230, 230, 230); /*color hand sampled from image*/
    1.44 +
    1.45 +}
    1.46 +
    1.47 +/* Snapped-view variation */
    1.48 +@media (max-width: 330px) {
    1.49 +  #floatingTextBox {
    1.50 +    top: 20%;
    1.51 +    left: 5%;
    1.52 +    width: 90%;
    1.53 +    padding: 0;
    1.54 +  }
    1.55 +}

mercurial