Commit | Line | Data |
---|---|---|
9099c61d RK |
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/. */ | |
3a121502 | 4 | |
5 | /* ===== start.css ===================================================== | |
6 | == Styles used by the mailnews start page. | |
7 | ======================================================================= */ | |
8 | ||
9 | body { | |
10 | margin: 0; | |
11 | padding: 0; | |
b4af54ca RK |
12 | background: url("chrome://branding/content/messenger-start-bg.png") no-repeat fixed center 3em; |
13 | background-size: auto 85%; | |
3a121502 | 14 | } |
15 | ||
16 | a:link, a:visited, a:active { | |
17 | color: #336699; | |
18 | text-decoration: underline; | |
19 | } | |
20 | ||
21 | h1 { | |
b4af54ca | 22 | background: url("chrome://branding/content/messenger-start-hdr.png") repeat-x bottom; |
3a121502 | 23 | border-bottom: 3px solid #000000; |
24 | font-size: 1.5em; | |
3a121502 | 25 | padding: 0.25em 0.75em; /* 0.75*1.5=1, so fit with 1em below */ |
26 | margin: 0; | |
27 | } | |
28 | ||
b4af54ca | 29 | #main { |
3a121502 | 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; | |
3a121502 | 40 | } |
41 | ||
42 | ul { | |
43 | margin: 0.5em 0; | |
44 | } | |
45 |