diff options
author | Oliver Burger <obgr_seneca@mageia.org> | 2011-10-25 20:59:51 +0000 |
---|---|---|
committer | Oliver Burger <obgr_seneca@mageia.org> | 2011-10-25 20:59:51 +0000 |
commit | 0ff582a4f48af9395009f0a4c611a51310454286 (patch) | |
tree | 0bd9e300d0c98b95296d319b1bf02a2669a20ae0 /skins/cavendish/basetemplate.css | |
parent | 246b38834224f9575f7b22cf84428ff615cb5acd (diff) | |
download | mediawiki-0ff582a4f48af9395009f0a4c611a51310454286.tar mediawiki-0ff582a4f48af9395009f0a4c611a51310454286.tar.gz mediawiki-0ff582a4f48af9395009f0a4c611a51310454286.tar.bz2 mediawiki-0ff582a4f48af9395009f0a4c611a51310454286.tar.xz mediawiki-0ff582a4f48af9395009f0a4c611a51310454286.zip |
import of original cavendish theme
Diffstat (limited to 'skins/cavendish/basetemplate.css')
-rw-r--r-- | skins/cavendish/basetemplate.css | 109 |
1 files changed, 109 insertions, 0 deletions
diff --git a/skins/cavendish/basetemplate.css b/skins/cavendish/basetemplate.css new file mode 100644 index 0000000..85bccb9 --- /dev/null +++ b/skins/cavendish/basetemplate.css @@ -0,0 +1,109 @@ +/* mozilla.org Base Template Styles
+ * Initial Design by Dave Shea
+ * Severely tweaked by David Baron
+ * Reorganized by fantasai
+ * Large Changes for new Cavendish default by Daniel Burka and Steven Garrity
+ */
+
+/* Basic Structure */
+ body {
+ min-width: 610px;
+ margin: 20px;
+ }
+
+ #container {
+ max-width: 100%; /* default: 70em; */
+ margin: 0 auto;
+ }
+
+ #mBody {
+ clear: both;
+ padding: 0 0 1em 0;
+ }
+
+ #side {
+ float: left;
+ width: 20%; /* default: 23% */
+ margin-bottom: 1em;
+ }
+
+ #mainContent {
+ float: right;
+ width: 78%; /* default: 75% */
+ margin-bottom: 1em;
+ }
+ .nomenu #mainContent {
+ float: none;
+ width: 100%;
+ }
+ .bodyleft {
+ float: right !important;
+ width: 75% !important;
+ }
+ #mainContent.right {
+ float: left;
+ width: 62%;
+ }
+
+ #side.right {
+ float: right;
+ width: 35%;
+ }
+
+/* Header */
+
+ #header { + margin-bottom: 1em; + } +
+ #header ul {
+ margin: 0 0 1em 0;
+ padding: 0; + line-height: 1.5em;
+ }
+
+ #header li {
+ display: inline;
+ padding: 0 20px 0 0;
+ margin: 0;
+ white-space: nowrap;
+ }
+
+/* Sidebar */
+
+ #getcd {
+ margin: 1em 0 0 45px;
+ }
+
+/* Footer */
+
+ #footer {
+ clear: both;
+ margin-top: 1em;
+ }
+
+ #footer ul {
+ margin: 0 0 0.5em 0;
+ padding: 0;
+ }
+
+ #footer li {
+ display: inline;
+ padding: 0 20px 0 0;
+ margin: 0;
+ white-space: nowrap;
+ }
+
+ #footer p {
+ margin: 0.6em 0;
+ }
+
+/*accessibility tweaks*/
+ .skipLink {
+ position: absolute;
+ left: -999px;
+ width: 990px;
+ }
+ hr.hide {
+ display: none;
+ }
|