diff options
author | Scott Rifenbark <scott.m.rifenbark@intel.com> | 2012-03-21 15:19:30 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-23 14:24:49 +0000 |
commit | b3d8c48ed4994900d95ff2215d4c3e5787dd2882 (patch) | |
tree | 94094b26a82c49d9b72bbef5a2745c793319757f | |
parent | db22f39d1cb06fb76ed54a510bc2c4ae8edeb4ff (diff) | |
download | poky-b3d8c48ed4994900d95ff2215d4c3e5787dd2882.tar.gz |
documentation/adt-manual/style.css: Added new style for Note headings
The style for the note, caution, warning, and tip headings was a bit
over-bearing. Feedback from the community indicated that those words
needed to be in a smaller, less noticeable font. I created the style
so that the font's size is about half of what it was and I also changed
the color to match the other headings.
(From yocto-docs rev: f54c6274e1972c52ba17d7ebd2ba84bf6d59c105)
Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | documentation/adt-manual/style.css | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/documentation/adt-manual/style.css b/documentation/adt-manual/style.css index 1e3db819c7..e6c62978b3 100644 --- a/documentation/adt-manual/style.css +++ b/documentation/adt-manual/style.css | |||
@@ -968,3 +968,12 @@ table { | |||
968 | color: #333; | 968 | color: #333; |
969 | } | 969 | } |
970 | 970 | ||
971 | /* Changes the announcement text */ | ||
972 | .tip h3, | ||
973 | .warning h3, | ||
974 | .caution h3, | ||
975 | .note h3 { | ||
976 | font-size:large; | ||
977 | color: #00557D; | ||
978 | } | ||
979 | |||