MediaWiki:Common.css: Difference between revisions

From bibbleWiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(5 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 */
.mw-highlight-bill pre {
.mw-highlight-bill pre {
/* background-color: #011627; */
background-color: #011627;  
    background-color: #222222;
}
 
.copy-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #444;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 12px;
}
 
.copy-button:hover {
    background-color: #666;
}
 
syntaxhighlight {
    position: relative;
    display: block;
    padding-top: 30px; /* Add space for the button */
    border-radius: 5px;
    overflow-x: auto;
}
}

Latest revision as of 23:16, 22 March 2025

/* CSS placed here will be applied to all skins */
.mw-highlight-bill pre {
	background-color: #011627; 
}