MediaWiki:Common.css: Difference between revisions

From zooid Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 49: Line 49:
body {
body {
         background: #f9f9f9 0 0 no-repeat;
         background: #f9f9f9 0 0 no-repeat;
}
.inverted {
  position:absolute;
  right:0;
  bottom:0;
  -webkit-transform:rotate(180deg);
  -moz-transform:rotate(180deg);
  -o-transform:rotate(180deg);
  filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}
}

Revision as of 16:43, 7 June 2010

.noticebox {
 -moz-border-radius: 1em;
 -webkit-border-radius: 1em;
  background: #cde;
  padding: 5px;
}

.cleared {
  clear: both;
}

.toc {
 -moz-border-radius: 1em;
}

/* make a few corners round, only supported by moz/firefox/other gecko browsers for now */
#p-cactions ul li, #p-cactions ul li a {
        -moz-border-radius: .5em;
        -webkit-border-radius: .5em;
        border: none;
}
#content {
        -moz-border-radius-bottomleft: 1em;
        -moz-border-radius-topleft: 1em;
        -webkit-border-bottom-left-radius: 1em;
        -webkit-border-top-left-radius: 1em;
        border: none;
        min-height: 400px;
}
div.pBody {
        -moz-border-radius-bottomright: 1em;
        -moz-border-radius-topright: 1em;
        -webkit-border-bottom-right-radius: 1em;
        -webkit-border-top-right-radius: 1em;
        background: white;
        border: none;
        padding-top: 4px;
        valign: top;
}

#content {
        font-size: 105%;
}

h3 {
  font-size: 110%; 
}

body {
        background: #f9f9f9 0 0 no-repeat;
}

.inverted {
  position:absolute;
  right:0;
  bottom:0;
  -webkit-transform:rotate(180deg);
  -moz-transform:rotate(180deg);
  -o-transform:rotate(180deg);
  filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}