MediaWiki:Common.css: Difference between revisions

From Hiero Hoopla
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


blockquote {
blockquote{
    position: relative;
  font-size: 1.4em;
    /* background: #ddd; */
  width:60%;
  margin:50px auto;
  font-family:Open Sans;
  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 {
blockquote::before{
  font-family:Arial;
  content: "\201C";
  color:#78C0A8;
  font-size:4em;
   position: absolute;
   position: absolute;
   content: open-quote;
   left: 10px;
  font-size: 4em;
   top:-10px;
  margin-left: -0.6em;
   margin-top: -0.4em;
}
}
blockquote:after {
 
  position: absolute;
blockquote::after{
   content: close-quote;
   content: '';
  font-size: 4em;
  bottom: 0;
  right: 0;
  margin-right: -0.6em;
  margin-bottom: -0.8em;
}
blockquote p {
  display: inline;
}
}


 
blockquote span{
/*
   display:block;
blockquote {
   color:#333333;
   background: #f9f9f9;
   font-style: normal;
  border-left: 10px solid #ccc;
   font-weight: bold;
  margin: 1.5em 10px;
   margin-top:1em;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
}
blockquote:before {
   color: #ccc;
  content: open-quote;
   font-size: 4em;
   line-height: 0.1em;
   margin-right: 0.25em;
  vertical-align: -0.4em;
}
blockquote p {
  display: inline;
}
}
*/

Revision as of 17:26, 30 November 2023

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

blockquote{
  font-size: 1.4em;
  width:60%;
  margin:50px auto;
  font-family:Open Sans;
  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:Arial;
  content: "\201C";
  color:#78C0A8;
  font-size:4em;
  position: absolute;
  left: 10px;
  top:-10px;
}

blockquote::after{
  content: '';
}

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