diff options
Diffstat (limited to '')
-rw-r--r-- | comm/suite/themes/modern/messenger/start.css | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/comm/suite/themes/modern/messenger/start.css b/comm/suite/themes/modern/messenger/start.css new file mode 100644 index 0000000000..059a488a2e --- /dev/null +++ b/comm/suite/themes/modern/messenger/start.css @@ -0,0 +1,40 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +/* ===== start.css ===================================================== + == Styles used by the mailnews start page. + ======================================================================= */ + +body { + margin: 0; + padding: 0; + background: url("chrome://branding/content/messenger-start-bg.png") no-repeat fixed center 3em; + background-size: auto 85%; +} + +h1 { + background: url("chrome://branding/content/messenger-start-hdr.png") repeat-x bottom; + border-bottom: 2px solid #26269A; + font-size: 1.5em; + padding: 0.25em 0.67em; /* 0.67*1.5=1, so fit with 1em below */ + margin: 0; +} + +#main { + margin: 0 1em; +} + +p { + margin: 0.5em 0; +} + +h2 { + font-size: 1.2em; + font-weight: bold; +} + +ul { + margin: 0.5em 0; +} + |