Difference between revisions of "MediaWiki:Common.css"
Jump to navigation
Jump to search
Line 16: | Line 16: | ||
padding-left: 5px; | padding-left: 5px; | ||
padding-right: 5px; | padding-right: 5px; | ||
white-space: pre-wrap; | |||
} | } | ||
.code_block_enum { | .code_block_enum { | ||
Line 27: | Line 28: | ||
padding-left: 5px; | padding-left: 5px; | ||
padding-right: 5px; | padding-right: 5px; | ||
white-space: pre-wrap; | |||
} | } | ||
.code_block_func { | .code_block_func { | ||
Line 38: | Line 40: | ||
padding-left: 5px; | padding-left: 5px; | ||
padding-right: 5px; | padding-right: 5px; | ||
white-space: pre-wrap; | |||
} | } | ||
.plugin_headline_text { | .plugin_headline_text { |
Revision as of 10:57, 27 April 2014
/* CSS placed here will be applied to all skins */ .plugin_text_fx { animation: color-change 1s infinite; -webkit-animation: color-change 1s infinite; -moz-animation: none; color: #06F; } .code_block_struct { font-family:'Lucida Console', Monaco, monospace; border-color:#003300; background-color:#E0EEE0; border-style:dashed; border-width: 2px; padding-top: 5px; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; white-space: pre-wrap; } .code_block_enum { font-family:'Lucida Console', Monaco, monospace; border-color:#003300; background-color:#E0EEE0; border-style:dotted; border-width: 2px; padding-top: 5px; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; white-space: pre-wrap; } .code_block_func { font-family:'Lucida Console', Monaco, monospace; border-color:#003300; background-color:#E0EEE0; border-style:solid; border-width: 2px; padding-top: 5px; padding-bottom: 5px; padding-left: 5px; padding-right: 5px; white-space: pre-wrap; } .plugin_headline_text { font-family: "Trebuchet MS", Helvetica, sans-serif; font-size: 115%; color: #551A8B; } @keyframes color-change { 0% { color: #006; } 20% { color: #00C; } 40% { color: #03F; } 50% { color: #06F; } 60% { color: #03F; } 80% { color: #00C; } 100% { color: #006; } } @-webkit-keyframes color-change { 0% { color: #006; } 20% { color: #00C; } 40% { color: #03F; } 50% { color: #06F; } 60% { color: #03F; } 80% { color: #00C; } 100% { color: #006; } }