1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/themes/shared/devtools/app-manager/help.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,40 @@ 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 + margin: 0; 1.10 + height: 100%; 1.11 +} 1.12 + 1.13 +body { 1.14 + color: #555; 1.15 + font-family: Lucida Grande, Helvetica, Helvetica Neue, sans-serif; 1.16 + overflow: hidden; 1.17 + max-width: 600px; 1.18 + margin: auto; 1.19 + padding: 20px 0; 1.20 + background-color: #FFF; 1.21 +} 1.22 + 1.23 +button { 1.24 + border: 1px solid #CCC; 1.25 + padding: 5px 15px; 1.26 + cursor: pointer; 1.27 + background: rgba(255,255,255,0.4); 1.28 + text-transform: uppercase; 1.29 + color: #3498DB; 1.30 +} 1.31 + 1.32 +button:hover { 1.33 + background-color: #3498DB; 1.34 + color: #FFF; 1.35 +} 1.36 + 1.37 +a, a:visited { 1.38 + color: rgb(39,109,163); 1.39 +} 1.40 + 1.41 +#close-button { 1.42 + float: right; 1.43 +}