* 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
This commit is contained in:
Adrien Destugues 2010-08-09 08:46:16 +00:00
parent 894cf4f363
commit 3290008f1e

View File

@ -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 }