summaryrefslogtreecommitdiff
path: root/shared/css
diff options
context:
space:
mode:
Diffstat (limited to 'shared/css')
-rw-r--r--shared/css/documentation.css101
1 files changed, 100 insertions, 1 deletions
diff --git a/shared/css/documentation.css b/shared/css/documentation.css
index 2b8cf50..a5a7f78 100644
--- a/shared/css/documentation.css
+++ b/shared/css/documentation.css
@@ -2,6 +2,10 @@
Global Documentation Styles
------------------------------------------------------------------------------*/
+html {
+ height:100%;
+}
+
body {
font: 13px helvetica,arial,freesans,clean,sans-serif;
line-height: 1.4em;
@@ -690,4 +694,99 @@ span.bash-output {
.more-info .more-content pre {
margin-left: 0px;
-} \ No newline at end of file
+}
+
+/****************************/
+/* List Module */
+/****************************/
+
+.list-module h2 {
+ border: solid #cacaca;
+ border-width: 1px;
+ border-radius: 3px 3px 0px 0px;
+ -moz-border-radius: 3px 3px 0px 0px;
+ -webkit-border-bottom-right-radius: 0px;
+ -webkit-border-bottom-left-radius: 0px;
+ -moz-background-clip: padding;
+ -webkit-background-clip: padding-box;
+ background-clip: padding-box;
+ padding: 6px 10px;
+ background-color: #f1f1f1;
+ background-image: -moz-linear-gradient(top, #f1f1f1, #e1e1e1);
+ background-image: -ms-linear-gradient(top, #f1f1f1, #e1e1e1);
+ background-image: -o-linear-gradient(top, #f1f1f1, #e1e1e1);
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f1f1), to(#e1e1e1));
+ background-image: -webkit-linear-gradient(top, #f1f1f1, #e1e1e1);
+ background-image: linear-gradient(top, #f1f1f1, #e1e1e1);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f1f1f1', EndColorStr='#e1e1e1');
+ color: #666;
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
+ font-size: 16px;
+ line-height: 22px;
+ margin: 0px;
+}
+
+.list-module .list-body {
+ border: solid #cacaca;
+ border-width: 0px 1px 1px 1px;
+ border-radius: 0px 0px 3px 3px;
+ -moz-border-radius: 0px 0px 3px 3px;
+ -webkit-border-bottom-right-radius: 3px;
+ -webkit-border-bottom-left-radius: 3px;
+ -moz-background-clip: padding;
+ -webkit-background-clip: padding-box;
+ background-clip: padding-box;
+ background-color: #fafafb;
+ color: #666;
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
+}
+
+.list-module .list-body .icon {
+ display: block;
+ height: 28px;
+ width: 28px;
+ position: absolute;
+ top: 10px;
+ left: 10px;
+ background: transparent url(images/popular_guide_sprites.png) 0 0 no-repeat;
+}
+
+.list-module a {
+ border-top: 1px solid #fff;
+ border-bottom: 1px solid #e9ecee;
+ padding: 6px 10px;
+ position: relative;
+ display: block;
+}
+
+.list-module a:hover {
+ border-top: 1px solid #fafafb;
+ border-bottom: 1px solid #e5e8ea;
+ background-color: #f0f0f3;
+ text-decoration: none;
+}
+
+.list-module a h3 {
+ color: #4183C4;
+}
+
+.list-module a:hover h3 {
+ text-decoration: underline;
+}
+
+.list-module ul {
+ list-style-type: none;
+ margin: 0px;
+}
+
+.list-module h3 {
+ margin: 0px;
+ font-size: 13px;
+}
+
+.list-module .list-body a p {
+ color: #666;
+ margin: 0px;
+}
+
+/* @end */