browser/metro/theme/aboutAddons.css

Wed, 31 Dec 2014 06:55:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:55:50 +0100
changeset 2
7e26c7da4463
permissions
-rw-r--r--

Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2

     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
     3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     5 html, body {
     6   height: 100%;
     7   padding: 0;
     8   margin: 0;
     9 }
    11 body {
    12   display: flex;
    13 }
    15 #aboutAddonsTextTitle {
    16   font-weight: bold;
    17 }
    19 #floatingTextBox {
    20   flex: 1;
    22   position: relative;
    23   top: 20%;
    24   left: 60%;
    26   width: 375px;
    27   padding: 20px;
    28   font-family: "Segoe UI", sans-serif;
    29   font-size: 25px;
    30   text-align: left;
    31   word-wrap: normal;
    32 }
    34 #fox {
    35   flex: 1;
    36   background-image:url('chrome://browser/skin/images/aboutAddonsBackground.png'), url('chrome://browser/skin/images/aboutAddonsBackgroundFillSlice.png');
    37   background-size: contain;
    38   background-position: bottom center;
    39   background-repeat: no-repeat, repeat-x;
    40   background-color: rgb(230, 230, 230); /*color hand sampled from image*/
    42 }
    44 /* Snapped-view variation */
    45 @media (max-width: 330px) {
    46   #floatingTextBox {
    47     top: 20%;
    48     left: 5%;
    49     width: 90%;
    50     padding: 0;
    51   }
    52 }

mercurial