MediaWiki:Common.css: Difference between revisions

From Comprehensible Input Wiki
Content added Content deleted
No edit summary
No edit summary
 
(42 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 */


@import url("/wiki/Mediawiki:Datatables.css?ctype=text/css&action=raw");
/* Indent section contents on main page */

.page-Main_Page #mw-content-text > .mw-parser-output > #main-stuff > :not(h2):not(#toc){
/* Info boxes */
margin-left: 10px;
.ciw-info-box, #starting, #summary_link, #mhthanks, #ciw-key-div, #newUrlDiv, #c-notice, #library-info, #lib-list-header{
border-style: solid;
border-color: green;
padding: 10px 13px;
width: fit-content;
margin:28px auto;
border-radius: 10px;
background-color: lightyellow;
}
}


#summary_link, #mhthanks, #lib-list-header {
/* Style input box in MediaWiki:Searchmenu-new */
text-align: center;
}

#ciw-key-div, #newUrlDiv {
margin:auto;
}

/* MediaWiki:Searchmenu-new - Input box */
#searchinputbox br {
#searchinputbox br {
display:none;
display:none;
}
}
#searchinputbox .createbox {
#searchinputbox .mw-inputbox-centered > form {
width:min-content;
width: min-content;
}

#vidHolder {
box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
margin: auto;
width: min-content;
padding: 10px;
float: right;
margin-left: 30px;
margin-bottom: 30px;
}

@media only screen and (max-width:800px) {
#vidHolder {
float:none;
margin: auto;
}
}

.random-active {
display: block;
}

.random-hidden {
display: none;
}

.nextbutton-image:hover {
background: #ededed;
cursor: pointer;
}

.nextbutton-image {
width: 45px;
}
}

Latest revision as of 18:44, 10 May 2023

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

@import url("/wiki/Mediawiki:Datatables.css?ctype=text/css&action=raw");

/* Info boxes */
.ciw-info-box, #starting, #summary_link, #mhthanks, #ciw-key-div, #newUrlDiv, #c-notice, #library-info, #lib-list-header{
    border-style: solid;
	border-color: green;
	padding: 10px 13px;
	width: fit-content;
	margin:28px auto;
	border-radius: 10px;
	background-color: lightyellow;
}

#summary_link, #mhthanks, #lib-list-header {
	text-align: center;
}

#ciw-key-div, #newUrlDiv {
  margin:auto;
}

/* MediaWiki:Searchmenu-new - Input box */
#searchinputbox br {
	display:none;
}
 
#searchinputbox .mw-inputbox-centered > form {
	width: min-content;
}

#vidHolder {
	box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
	margin: auto;
	width: min-content;
	padding: 10px;
	float: right;
	margin-left: 30px;
	margin-bottom: 30px;
}

@media only screen and (max-width:800px) {
 #vidHolder {
   float:none;
   margin: auto;
 }
}

.random-active {
	display: block;
}

.random-hidden {
	display: none;
}

.nextbutton-image:hover {
    background: #ededed;
    cursor: pointer;
}

.nextbutton-image {
	width: 45px;
}