MediaWiki:Common.css: Difference between revisions

From zooid Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(19 intermediate revisions by the same user not shown)
Line 1: Line 1:
.hidden {
display: none;
}
.noticebox {
.noticebox {
  -moz-border-radius: 1em;
  -moz-border-radius: 1em;
Line 4: Line 8:
   background: #cde;
   background: #cde;
   padding: 5px;
   padding: 5px;
}
.cleared {
  clear: both;
}
}


Line 10: Line 18:
}
}


/* 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 {
#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;
         font-size: 105%;
         font-size: 105%;
}
}
Line 39: Line 25:
   font-size: 110%;  
   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);
}
h1,
h2,
h3,
h4,
h5,
h6 {
border-bottom: none;
}
h1.firstHeading {
  display: none;
}
/* dagre stuff */
svg {
  border: 1px solid black;
}
text {
  font-weight: 300;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serf;
  font-size: 14px;
}
rect {
  fill: #fff;
}
.node rect {
  stroke-width: 2px;
  stroke: #333;
  fill: none;
}
#node-CLOSED rect {
  fill: #f77;
}
#node-ESTAB rect {
  fill: #7f7;
}
.edge rect {
  fill: #fff;
}
.edge path {
  fill: none;
  stroke: #333;
  stroke-width: 1.5px;
}
/* end of dagre stuff */

Latest revision as of 18:05, 14 April 2024

.hidden {
display: none;
}

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

.cleared {
  clear: both;
}

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

#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);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	border-bottom: none;
}

h1.firstHeading {
  display: none;
}



/* dagre stuff */
svg {
  border: 1px solid black;
}
 
text {
  font-weight: 300;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serf;
  font-size: 14px;
}
 
rect {
  fill: #fff;
}
 
.node rect {
  stroke-width: 2px;
  stroke: #333;
  fill: none;
}
 
#node-CLOSED rect {
  fill: #f77;
}
 
#node-ESTAB rect {
  fill: #7f7;
}
 
.edge rect {
  fill: #fff;
}
 
.edge path {
  fill: none;
  stroke: #333;
  stroke-width: 1.5px;
}
/* end of dagre stuff */