This wiki is still a major work in progress, and a lot is being worked on. Please be patient.Newmaker

Difference between revisions of "MediaWiki:Common.css"

From Petscop
Jump to: navigation, search
(I'll get it eventually)
m (I will beat this into submission if I must)
Line 53: Line 53:
 
/* Petscop textboxes */
 
/* Petscop textboxes */
 
.petscop-textbox {
 
.petscop-textbox {
   font-family: Ubuntu Mono, Consolas, Courier New, monospace;
+
   font-family: Verdana, Arial, sans-serif;
 
   border: 5px solid gray;
 
   border: 5px solid gray;
 
   background-color: white;
 
   background-color: white;
   padding: 0.0em 0.5em;
+
   padding: 0.3em 0.5em;
 
   margin: 4px auto 4px 4px;
 
   margin: 4px auto 4px 4px;
 
   color: black;
 
   color: black;
Line 66: Line 66:
 
   margin: 0;
 
   margin: 0;
 
   line-height: normal;
 
   line-height: normal;
 +
}
 +
.poem hr+br {
 +
    display: none;
 
}
 
}

Revision as of 22:38, 24 May 2017

/* CSS placed here will be applied to all skins */



.breakout {
  float: right;
  border: 1px solid #888;
  background: #fff;
  padding: 0.2em;
  }

.breakouttitle {
  text-align: center;
  background: #fcf;
  border-top: 1px solid #a6a;
  border-bottom: 1px solid #a6a;
  }


input, textarea {
  border: 1px solid #ccc;
  background: #f8f8f8; /* you can't fight f8 */
  color:      #000;
}



/* wikitable/prettytable class for skinning normal tables */
table.wikitable,
table.prettytable {
    margin: 1em 1em 1em 0;
    background: #f9f9f9;
    border: 1px #aaa solid;
    border-collapse: collapse;
}
.wikitable th, .wikitable td,
.prettytable th, .prettytable td {
    border: 1px #aaa solid;
    padding: 0.2em;
}
.wikitable th,
.prettytable th {
    background: #f2f2f2;
    text-align: center;
}
.wikitable caption,
.prettytable caption {
    font-weight: bold;
}



/* Petscop textboxes */
.petscop-textbox {
  font-family: Verdana, Arial, sans-serif;
  border: 5px solid gray;
  background-color: white;
  padding: 0.3em 0.5em;
  margin: 4px auto 4px 4px;
  color: black;
  width: 500px;  
  border-color: #eee #bbb #888 #bbb;
  box-shadow: 0px 0px 0px 2px black;
}
.petscop-textbox p {
  margin: 0;
  line-height: normal;
}
.poem hr+br {
    display: none;
}