| 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 | /* ===== start.css ===================================================== |
| 6 | == Styles used by the mailnews start page. |
| 7 | ======================================================================= */ |
| 8 | |
| 9 | body { |
| 10 | margin: 0; |
| 11 | padding: 0; |
| 12 | background: url("chrome://branding/content/messenger-start-bg.png") no-repeat fixed center 3em; |
| 13 | background-size: auto 85%; |
| 14 | } |
| 15 | |
| 16 | a:link, a:visited, a:active { |
| 17 | color: #336699; |
| 18 | text-decoration: underline; |
| 19 | } |
| 20 | |
| 21 | h1 { |
| 22 | background: url("chrome://branding/content/messenger-start-hdr.png") repeat-x bottom; |
| 23 | border-bottom: 2px solid #CCD0DD; |
| 24 | font-size: 1.5em; |
| 25 | padding: 0.25em 0.75em; /* 0.75*1.5=1, so fit with 1em below */ |
| 26 | margin: 0; |
| 27 | } |
| 28 | |
| 29 | #main { |
| 30 | margin: 0 1em; |
| 31 | } |
| 32 | |
| 33 | p { |
| 34 | margin: 0.5em 0; |
| 35 | } |
| 36 | |
| 37 | h2 { |
| 38 | font-size: 1.2em; |
| 39 | font-weight: bold; |
| 40 | } |
| 41 | |
| 42 | ul { |
| 43 | margin: 0.5em 0; |
| 44 | } |
| 45 | |