This wiki is for the exclusive use of my friends and colleagues. Account creation and anonymous editing have been turned off.

If you are a friend or colleague of mine, and would like to participate in this project, please send me a message.

If you find these pages useful, please donate to help cover server costs. Thanks!

Difference between revisions of "MediaWiki:Common.css"

From OdleWiki
Line 8: Line 8:
 
}
 
}
  
.3col {
+
.colthree {
 
-moz-column-count:3; /* Firefox */
 
-moz-column-count:3; /* Firefox */
 
-webkit-column-count:3; /* Safari and Chrome */
 
-webkit-column-count:3; /* Safari and Chrome */
Line 14: Line 14:
 
}  
 
}  
  
.2col {
+
.coltwo {
 
-moz-column-count:2; /* Firefox */
 
-moz-column-count:2; /* Firefox */
 
-webkit-column-count:2; /* Safari and Chrome */
 
-webkit-column-count:2; /* Safari and Chrome */
 
column-count:2;
 
column-count:2;
 
}
 
}

Revision as of 18:06, 17 October 2013

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

code {
background: #f6f6f6;
color: #000066;
padding: 18px
margin: 12px 12px 12px 0;
}

.colthree {
-moz-column-count:3; /* Firefox */
-webkit-column-count:3; /* Safari and Chrome */
column-count:3;
} 

.coltwo {
-moz-column-count:2; /* Firefox */
-webkit-column-count:2; /* Safari and Chrome */
column-count:2;
}