Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Mendel <cybot_tm@users.sourceforge.net>2006-02-17 10:33:35 +0300
committerSebastian Mendel <cybot_tm@users.sourceforge.net>2006-02-17 10:33:35 +0300
commit446e3ea5a6976959001bb01708749986e64706c4 (patch)
treeb83733b5e3f74c670b1ba5bd84f87461c11a938f /docs.css
parentf76ada3e96c5d0ba3f6b4cd4225404f2daf8690f (diff)
- XHTML 1.1, more semantic, formating, cleanup
- added glossar - linked all references
Diffstat (limited to 'docs.css')
-rw-r--r--docs.css161
1 files changed, 137 insertions, 24 deletions
diff --git a/docs.css b/docs.css
index 82ecfe150e..9cd0e00950 100644
--- a/docs.css
+++ b/docs.css
@@ -6,61 +6,101 @@
body {
background-color: #ffffff;
font-family: sans-serif;
- color: #000;
- margin: 0px;
- padding: 2em 0px 2em 0px;
+ color: #000000;
+ margin: 0;
+ padding: 2em 0 2em 0;
+}
+
+img {
+ border: 0;
+}
+
+abbr, acronym {
+ border-bottom: 1px dotted;
+}
+
+abbr, acronym {
+ cursor: help;
}
a {
text-decoration: none;
color: #000099;
background-color: #ffffff;
- font-weight: normal;
+/* font-weight: normal;*/
}
+
a:hover {
- background-color: #99CCFF;
+/* background-color: #99CCFF;*/
+ color: #000099;
background-color: #ffffff;
- font-weight: bolder
+ text-decoration: underline;
+/* font-weight: bolder */
}
+sup {
+ font-size: 0.7em;
+}
-div.header {
+sup:before {
+ content: ' [';
+}
+
+sup:after {
+ content: ']';
+}
+
+
+ul.header {
width: 100%;
background-color: #ddeeff;
color: #000000;
text-align: center;
- padding-bottom: 2px;
+ padding: 0 0 2px 0;
border-bottom: 1px solid #000000;
font-weight: bold;
- left: 0px;
- top: 0px;
+ left: 0;
+ top: 0;
position: fixed;
+ margin: 0;
/* following MSIE hack was originally written by Riki Fridrich
* <http://www.fczbkk.com> */
- position: expression("absolute");
- width: expression(document.body.clientWidth);
- top: expression(document.body.scrollTop + this.offsetHeight - this.offsetHeight);
+/* position: expression("absolute");*/
+/* width: expression(document.body.clientWidth);*/
+/* top: expression(document.body.scrollTop + this.offsetHeight - this.offsetHeight);*/
+}
+
+ul.header li {
+ margin: 0;
+ padding: 0;
+ display: inline;
}
-div.header hr {
- display: none;
+ul.header li:before {
+ content: ' - ';
}
-div.header a {
+ul.header li:first-child:before {
+ content: '';
+}
+
+ul.header a {
text-decoration: none;
font-size: medium;
color: #000099;
background-color: #ddeeff;
font-weight: normal;
}
-div.header a:hover {
+ul.header a:hover {
+ color: #000099;
background-color: #99CCFF;
- font-weight: bolder
+/* font-weight: bolder;*/
}
h1 {
text-align: center;
padding-left: 8%;
margin-top: 1em;
+ color: #000000;
background-color: #ddeeff;
font-size: x-large;
border-top: 1px solid #000000;
@@ -70,32 +110,63 @@ h1 {
h2 {
padding-left: 8%;
+ padding-top: 2em;
margin-top: 1em;
+ color: #000000;
background-color: #ddeeff;
font-size: large;
border-top: 1px solid #000000;
border-bottom: 1px solid #000000;
clear: both;
+ counter-reset: heading3;
+ counter-increment: heading2;
+}
+
+h2:before {
+ content: counter(heading2) '. ';
}
+
h3 {
padding-left: 10%;
+ padding-top: 3em;
margin-top: 1em;
+ color: #000000;
background-color: #ddeeff;
font-size: medium;
border-top: 1px solid #000000;
border-bottom: 1px solid #000000;
clear: both;
+ counter-reset: heading4;
+ counter-increment: heading3;
}
-h4 {
- padding: 0px;
+h3:before {
+ content: counter(heading2) '.' counter(heading3) '. ';
+}
+
+h4, h5 {
+ padding: 3em 0 0 0;
margin: 10px 5% 2px 5%;
font-weight: bold;
color: #000099;
+ background-color: #ffffff;
+ counter-increment: heading4;
+}
+
+h4:before {
+ content: counter(heading2) '.' counter(heading3) '.' counter(heading4) '. ';
+}
+
+h5 {
+ counter-increment: heading5;
+}
+
+h5:before {
+ content: counter(heading2) '.' counter(heading3) '.' counter(heading4) counter(heading5,lower-alpha);
}
p {
- margin: 2px 5% 2px 5%;
+ margin: 2px 5% 1em 5%;
}
table {
@@ -114,6 +185,7 @@ table.translators {
}
table.translators th {
+ color: #000000;
background-color: #d3dce3;
}
@@ -127,9 +199,18 @@ ul {
}
pre {
- margin: 2px 5% 2px 5%;
+ margin: 1em 5% 1em 5%;
+ border: 1px solid silver;
+ color: #000000;
+ background-color: #eeeeee;
+ padding: 0.5em;
+}
+/* no more intend inside li */
+li pre {
+ margin: 1em 0 1em 0;
}
+
pre.wrap {
white-space: normal;
}
@@ -140,25 +221,57 @@ dl {
dt {
font-weight: bold;
margin-left: 2em;
- padding-top: 6px;
+ padding-top: 3em;
}
dd {
margin-left: 4em;
+ margin-bottom: 1em;
}
ol {
margin: 1em 6% 1em 6%;
}
+li {
+ margin-bottom: 1em;
+}
+
+.configrule {
+ font-family: monospace;
+}
+
+dt.configrule {
+ font-weight: bold;
+}
+
.important {
color: #bb0000;
+ background-color: #ffeeee;
+ padding: 0 0.5em 0 0.5em;
+}
+
+p.important {
+ border: 1px dotted #ff0000;
+ padding: 0.5em;
+}
+
+.important:first-word {
+ font-weight: bold;
}
p.footnote {
- margin: 2px 5% 2px 7%;
+ margin: 0 5% 2px 7%;
+ padding-top: 3em;
}
p.footnote:first-line {
margin-left: -2%;
}
+p#bottom {
+ text-align: right;
+}
+
+p#bottom img {
+ margin: 1em;
+} \ No newline at end of file