MediaWiki:Common.css: Difference between revisions

From PurpleIRC Wiki
No edit summary
No edit summary
 
(7 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 */


.button {
.fancy-button {
  border-top: 1px solid #c197f7;
  font: 4px;
  background: #a765d6;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, from(#6a3e9c), to(#a765d6));
  text-decoration: none;
  background: -webkit-linear-gradient(top, #6a3e9c, #a765d6);
  background-color: #EEEEEE;
  background: -moz-linear-gradient(top, #6a3e9c, #a765d6);
  color: #333333;
  background: -ms-linear-gradient(top, #6a3e9c, #a765d6);
  padding: 6px 6px 6px 6px;
  background: -o-linear-gradient(top, #6a3e9c, #a765d6);
  border-top: 2px solid #9999FF;
  padding: 11px 22px;
  border-right: 2px solid #666666;
  -webkit-border-radius: 7px;
  border-bottom: 2px solid #666666;
  -moz-border-radius: 7px;
  border-left: 2px solid #9999FF;
  border-radius: 7px;
  border-radius: 5px;
  -webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
}
  -moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
  box-shadow: rgba(0,0,0,1) 0 1px 0;
  text-shadow: rgba(0,0,0,.4) 0 1px 0;
  color: white;
  font-size: 16px;
  font-family: Helvetica, Arial, Sans-Serif;
  text-decoration: none;
  vertical-align: middle;
  }
.button:hover {
  border-top-color: #542878;
  background: #542878;
  color: #ccc;
  }
.button:active {
  border-top-color: #4e1b5c;
  background: #4e1b5c;
  }

Latest revision as of 01:26, 13 June 2015

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

.fancy-button {
  font: 4px;
  font-weight: bold;
  text-decoration: none;
  background-color: #EEEEEE;
  color: #333333;
  padding: 6px 6px 6px 6px;
  border-top: 2px solid #9999FF;
  border-right: 2px solid #666666;
  border-bottom: 2px solid #666666;
  border-left: 2px solid #9999FF;
  border-radius: 5px;
}