| 
/**
* Wave Framework <http://github.com/kristovaher/Wave-Framework>
* Documentation Stylesheet
* 
* This is a generic stylesheet used for documentation and various developer 
* tools. This same CSS is both in /tools/ and /doc/ directories.
* 
* @package    Documentation
* @author     Kristo Vaher <[email protected] >
* @copyright  Copyright (c) 2012, Kristo Vaher
* @license    GNU Lesser General Public License Version 3
* @since      2.2.5
* @version    3.6.5
*/
html,body {
	background-color: #f2f2f2; 
	background-image: linear-gradient(top, #d9d9d9, #f2f2f2); 
	background-image: -moz-linear-gradient(top, #d9d9d9, #f2f2f2); 
	background-image: -ms-linear-gradient(top, #d9d9d9, #f2f2f2); 
	background-image: -webkit-linear-gradient(top, #d9d9d9, #f2f2f2); 
	background-image: -webkit-gradient(linear,left bottom, left top, color stop(0%, #d9d9d9), color stop(100%, #f2f2f2))); 
	background-image: -o-linear-gradient(top, #d9d9d9, #f2f2f2); 
	background-repeat: repeat-x;
	color: #2a2e36; 
	font-family: Verdana; 
	font-size: 14px; 
	font-weight: normal; 
	line-height: 20px; 
	margin:0px;
	padding:10px;
}
p,li {
	text-align:justify;
}
body { 
	max-width:800px;
	margin-left:auto;
	margin-right:auto;
}
h1,h2,h3,h4,h5 {
	font-family:Georgia;
	color:#364460;
	font-weight:normal;
	padding:3px;
	margin:5px 2px;
}
h1 { font-size:26px; }
h2 { font-size:22px; }
h3 { font-size:18px; }
h4 { font-size:16px; }
h5 { font-size:15px; }
h1 { padding-bottom:10px; }
a { 
	color:#386e98;
	font-weight:bold;
	text-decoration:none;
}
a:hover {
	color:#4d8cbd;
}
.blue {
	color: #2a2e36; 
}
.red, .red:hover {
	color:#c00000;
}
.orange {
	color:#d4860c;
}
p,ul { 
	margin:2px;
	padding:2px 6px; 
}
li {
	margin-left:25px;
}
.bold { 
	font-weight:bold;
}
.italic { 
	font-style:italic;
}
.block { 
	padding:5px;
	margin:5px 2px;
}
.box { 
	padding:5px;
	margin:5px 20px;
}
.small { 
	font-size:12px;
}
.highlight { 
	background-color:#b2bcca;
}
.lighthighlight { 
	background-color:#c4ccd8;
}
.border { 
	border:1px solid #4a5262;
}
.disabled {
	color:#576073;
}
.footer {
	text-align:right;
	color:#788296;
	margin:20px 10px 10px 10px;
}
.right {
	float:right;
}
 |