No edit summary
No edit summary
 
(33 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


blockquote {
.twoColumns {
    background-color: #ddf5eb;  
-moz-column-count:2;  
    border-style: dotted;
-webkit-column-count:2;  
    style="background-color:  
  column-count:2;
}
}


pre {
pre {
Line 13: Line 14:
     white-space: -o-pre-wrap;  
     white-space: -o-pre-wrap;  
     word-wrap: break-word;
     word-wrap: break-word;
    background-color: #c6dbf7;
}
blockquote{
  font-size: 1.4em;
  width:70%;
  margin:50px auto;
  font-family:Times New Roman;
  font-style:italic;
  color: #555555;
  padding:1.2em 30px 1.2em 75px;
  border-left:8px solid #78C0A8 ;
  line-height:1.6;
  position: relative;
  background:#EDEDED;
}
blockquote::before{
  font-family: Times New Roman;
  content: "\201C";
  color:#78C0A8;
  font-size:5em;
  position: absolute;
  left: -2px;
  top:-10px;
}
blockquote::after{
  content: '';
}
}


quote box{
blockquote span{
width    : 29em;
  display:block;
border    : 1px;
  color:#333333;
align    : left;
  font-style: normal;
bgcolor   : #c6dbf7;
   font-weight: bold;
halign    : left;
  margin-top:1em;
}
}

Latest revision as of 18:31, 29 May 2024

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

.twoColumns {
 -moz-column-count:2; 
 -webkit-column-count:2; 
  column-count:2;
}


pre {
    white-space: pre-wrap;
    white-space: -moz-pre-wrap; 
    white-space: -pre-wrap; 
    white-space: -o-pre-wrap; 
    word-wrap: break-word;
    background-color: #c6dbf7; 
}


blockquote{
  font-size: 1.4em;
  width:70%;
  margin:50px auto;
  font-family:Times New Roman;
  font-style:italic;
  color: #555555;
  padding:1.2em 30px 1.2em 75px;
  border-left:8px solid #78C0A8 ;
  line-height:1.6;
  position: relative;
  background:#EDEDED;
}

blockquote::before{
  font-family: Times New Roman;
  content: "\201C";
  color:#78C0A8;
  font-size:5em;
  position: absolute;
  left: -2px;
  top:-10px;
}

blockquote::after{
  content: '';
}

blockquote span{
  display:block;
  color:#333333;
  font-style: normal;
  font-weight: bold;
  margin-top:1em;
}