diff --git a/docs/anttask.html b/docs/anttask.html index 11a26a56f..428735732 100644 --- a/docs/anttask.html +++ b/docs/anttask.html @@ -3,13 +3,11 @@
This task runs checkstyle over specified Java files. The task has been tested using ANT 1.4.1. The latest version of checkstyle can be found at http://checkstyle.sourceforge.net/. @@ -32,7 +30,7 @@ This task is included in the checkstyle distribution.
| Attribute | Description | Required | diff --git a/docs/cmdline.html b/docs/cmdline.html index 09ee32c83..8780ddcec 100644 --- a/docs/cmdline.html +++ b/docs/cmdline.html @@ -3,21 +3,19 @@
| Property | Description |
- Checkstyle Home Page
+ Checkstyle Home Page |
diff --git a/docs/mystyle.css b/docs/mystyle.css
index 8adbeee53..af894a060 100644
--- a/docs/mystyle.css
+++ b/docs/mystyle.css
@@ -3,6 +3,29 @@
// margin-right : 5%;
//}
+h1 {
+ font-family : monospace;
+ font-size : 28;
+ font-weight : bold;
+ color : #aaaaaa;
+ text-transform: capitalize;
+}
+
+h2 {
+ text-transform: capitalize;
+}
+
+h4.tip {
+ text-transform: capitalize;
+ text-align: center;
+}
+
+tr.header {
+ background-color: Silver;
+ font-weight: bolder;
+ text-align: center;
+}
+
p.body {
margin-left : 5%;
margin-right : 3%;
@@ -18,3 +41,17 @@ span.code {
font-family: monospace;
font-weight: bold
}
+
+span.default {
+ white-space: nowrap;
+ font-family: monospace;
+}
+
+div.tip {
+ margin-left : 5%;
+ margin-right : 5%;
+ padding-left: 2%;
+ padding-right: 2%;
+ background-color: Silver;
+ border: ridge;
+}
|