From 3290008f1e9a080cce841efe092ab02da01907f4 Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Mon, 9 Aug 2010 08:46:16 +0000 Subject: [PATCH] * Add the warning and info boxes from userguide. However, I don't know how to upload the associated images to the api server. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37981 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- docs/user/book.css | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/docs/user/book.css b/docs/user/book.css index 82ad13e153..0ef01740a7 100644 --- a/docs/user/book.css +++ b/docs/user/book.css @@ -160,6 +160,32 @@ div.contents { padding: 50px 40px; } +/* The boxes from the userguide */ +/* Rounded corner boxes */ +/* Common declarations */ +.info, .stop, .warning { + -webkit-border-radius: 10px; + -khtml-border-radius: 10px; + -moz-border-radius: 10px; + border-radius: 10px; + border-style: dotted; + border-width: thin; + border-color: #dcdcdc; + padding: 10px 15px 10px 80px; + margin-bottom: 15px; + margin-top: 15px; + min-height: 42px; +} +.info { + background: #e4ffde url(images/alert_info_32.png) 15px 15px no-repeat; +} +.warning { + background: #fffbc6 url(images/alert_warning_32.png) 15px 15px no-repeat; +} +.stop { + background: #ffeae6 url(images/alert_stop_32.png) 15px 15px no-repeat; +} + /* Continue with the rest of the standard Doxygen stuff... */ CAPTION { font-weight: bold }