Difference between revisions of "MediaWiki:Common.css"

From AmwayWiki
Jump to: navigation, search
 
(3 intermediate revisions by the same user not shown)
Line 3: Line 3:
  
 
#mw-page-base {
 
#mw-page-base {
background-color: dodgerBlue !important;
+
background-color: #044AA4 !important;
 
background-image: none;
 
background-image: none;
 
}
 
}
Line 9: Line 9:
 
@media (max-width:768px) {
 
@media (max-width:768px) {
 
#mw-page-base {
 
#mw-page-base {
background-color: dodgerBlue;
+
background-color: #044AA4;
 
}
 
}
 
}
 
}
Line 15: Line 15:
 
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
 
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
 
#mw-page-base {
 
#mw-page-base {
background-color: dodgerBlue;
+
background-color: #044AA4;
 
}
 
}
 
}
 
}
Line 21: Line 21:
 
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
 
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
 
#mw-page-base {
 
#mw-page-base {
background-color: dodgerBlue;
+
background-color: #044AA4;
 
}
 
}
 
}
 
}
Line 42: Line 42:
  
 
div.vectorMenu h5 a {
 
div.vectorMenu h5 a {
background-color: dodgerBlue;  
+
background-color: #044AA4;  
 
}
 
}
  
Line 50: Line 50:
  
 
div.vectorMenu ul {
 
div.vectorMenu ul {
border: solid 2px dodgerBlue;
+
border: solid 2px #044AA4;
 
border-top: none;
 
border-top: none;
  
Line 65: Line 65:
  
 
div.actionmenu ul {
 
div.actionmenu ul {
border-top: solid 2px dodgerBlue;
+
border-top: solid 2px #044AA4;
 
}
 
}
  
 
#left-navigation {
 
#left-navigation {
background-color: dodgerBlue;
+
background-color: #044AA4;
 
}
 
}
 
}
 
}

Latest revision as of 23:58, 12 January 2016

/* CSS placed here will be applied to all skins */
body.page-Main_Page .firstHeading {display: none;}

#mw-page-base {
	background-color: #044AA4 !important;
	background-image: none;
}

@media (max-width:768px) {
#mw-page-base {
	background-color: #044AA4;
}
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
#mw-page-base {
	background-color: #044AA4;
}
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
#mw-page-base {
	background-color: #044AA4;
}
}

div.vectorTabs a:hover {
	background-color: blue;
}

div.onhoverbg:hover {
	background-color: blue;
}

img.downarrow:hover{
	background-color: blue;
}

div.vectorMenu:hover h5 a {
	background-color: blue;
}

div.vectorMenu h5 a {
	background-color: #044AA4; 
}

div.vectorMenu:hover {
	background-color: blue;
}

div.vectorMenu ul {
	border: solid 2px #044AA4;
	border-top: none;

}

@media (max-width: 768px) {
#hamburgerIcon:hover {
	background-color: blue;
}

img.editbutton:hover {
	background-color: blue;
}

div.actionmenu ul {
	border-top: solid 2px #044AA4;
}

#left-navigation {
	background-color: #044AA4;
}
}