style.css (905B)
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/. */ 4 5 body, 6 html { 7 background: #221f1f; 8 color: #ffffff; 9 font-family: sans-serif; 10 line-height: 24px; 11 font-size: 14px; 12 } 13 14 body { 15 padding-left: 24px; 16 padding-right: 24px; 17 margin-left: 0; 18 margin-right: 0; 19 } 20 21 a { 22 color: #0a9af4; 23 } 24 25 /* Make only about page links ("learn more") white */ 26 .about a { 27 color: #ffffff; 28 } 29 30 p.subtitle { 31 text-align: center; 32 opacity: 0.7; 33 margin: 0; 34 } 35 36 img#wordmark { 37 /* We need to set the dp size here, because by default webview assumes the image is not 38 density specific (but since it's an android resource, we get a density specific version). */ 39 width: 180px; 40 display: block; 41 margin-left: auto; 42 margin-right: auto; 43 padding-top: 24px; 44 }