MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
(Replaced content with "→CSS placed here will be applied to all skins: ") Tags: Replaced Reverted |
No edit summary Tag: Manual revert |
||
Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* 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; | |||
} |
Revision as of 17:28, 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; }