Difference between revisions of "MediaWiki:Common.css"

From apertus wiki
Jump to: navigation, search
(Created page with "→‎CSS placed here will be applied to all skins: img { max-width:100%; height:auto; } a { color: #fa8756; text-decoration: none; } a:hover { color: #474747; }")
 
 
(2 intermediate revisions by the same user not shown)
Line 10: Line 10:
a:hover {
a:hover {
   color: #474747;
   color: #474747;
}
.btn-primary {
  color: #FFFFFF;
  background-color: #fa8756;
  border:0;
}
.btn-primary:hover {
  color: #000000;
  background-color: #7ebcc6;
  border:0;
}
}

Latest revision as of 12:30, 3 February 2022

/* CSS placed here will be applied to all skins */
img {
	max-width:100%;
	height:auto;
}
a {
  color: #fa8756;
  text-decoration: none;
}
a:hover {
  color: #474747;
}
.btn-primary {
  color: #FFFFFF;
  background-color: #fa8756;
  border:0;
}
.btn-primary:hover {
  color: #000000;
  background-color: #7ebcc6;
  border:0;
}