Please refer to Copyright Policy as well as the Media Upload Policy for Chrono Wiki. If there are any questions, please direct them into the discussion page. As always, please refer to the Manual of Style when editing.

MediaWiki:Common.css: Difference between revisions

From Chrono Wiki, a database for the Chrono series that anyone can edit
no edit summary
m (22 revisions from chrono:MediaWiki:Common.css)
No edit summary
Line 25: Line 25:
   height: 32px;
   height: 32px;
   width: 100%;
   width: 100%;
   background: url('http://images3.wikia.nocookie.net/__cb20090222050104/chrono/images/2/26/Background.png') repeat-x;
   background: url('http://media.gamewiki.com/chronowiki/images/2/26/Background.png') repeat-x;
   padding: 3px;
   padding: 3px;
   text-align: center;
   text-align: center;
Line 74: Line 74:
}
}
.forumlist td.forum_title a.forum_new {
.forumlist td.forum_title a.forum_new {
     font-weight: bold; background: url(http://images3.wikia.nocookie.net/chrono/images/4/4e/Forum_new.gif)
     font-weight: bold; background: url(http://media.gamewiki.com/chronowiki/images/4/4e/Forum_new.gif)
     center left no-repeat; padding-left: 20px;
     center left no-repeat; padding-left: 20px;
}
}
Line 306: Line 306:
   padding:0.2em 0.4em;  
   padding:0.2em 0.4em;  
   margin:0 0 10px 0;  
   margin:0 0 10px 0;  
   background: url('http://images3.wikia.nocookie.net/__cb20090222050104/chrono/images/2/26/Background.png') repeat-x;
   background: url('http://media.gamewiki.com/chronowiki/images/2/26/Background.png') repeat-x;
   color: white;  
   color: white;  
   font-size:140%;  
   font-size:140%;  
Line 466: Line 466:


.hiddenStructure { display: none; }
.hiddenStructure { display: none; }
/* rounded corners for webkit browsers: works on Chrome v5.0.307.11 beta and Safari v4.0.4  */
#p-cactions ul li, #p-cactions ul li a {
-webkit-border-top-left-radius: 8px;
-webkit-border-top-right-radius: 8px;
}
#content {
-webkit-border-top-left-radius: 8px;
-webkit-border-bottom-left-radius: 8px;
}
div.pBody {
-webkit-border-top-right-radius: 8px;
-webkit-border-bottom-right-radius: 8px;
}
/* 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-topleft: 1em;
  -moz-border-radius-topright: 1em;
}
#content {
  -moz-border-radius-topleft: 1em;
  -moz-border-radius-bottomleft: 1em;
}
div.pBody {
  -moz-border-radius-topright: 1em;
  -moz-border-radius-bottomright: 1em;
}
/* same following the css3 draft specs, any browsers supporting this? */
#p-cactions ul li, #p-cactions ul li a {
  border-top-left-radius: 1em;
  border-top-right-radius: 1em;
}
#content {
  border-top-left-radius: 1em;
  border-bottom-left-radius: 1em;
}
div.pBody {
  border-top-right-radius: 1em;
  border-bottom-right-radius: 1em;
}