MediaWiki:Common.css: Difference between revisions
From Nasqueron Agora
(Created page with "→Call for actions button: .btn { -webkit-border-radius: 6; -moz-border-radius: 6; border-radius: 6px; color: #ffffff; font-size: 1.4em; background: #4d7b94;...") |
(Tab as indent, links in white) |
||
Line 2: | Line 2: | ||
.btn { | .btn { | ||
-webkit-border-radius: 6; | |||
-moz-border-radius: 6; | |||
border-radius: 6px; | |||
color: #ffffff; | |||
font-size: 1.4em; | |||
background: #4d7b94; | |||
padding: 10px 20px 10px 20px; | |||
text-decoration: none; | |||
} | |||
.btn a, .btn a:hover, .btn a:visited { | |||
color: white; | |||
} | } | ||
.btn:hover { | .btn:hover { | ||
background: #6caacc; | |||
text-decoration: none; | |||
} | } |
Revision as of 23:57, 16 February 2016
/* Call for actions button */
.btn {
-webkit-border-radius: 6;
-moz-border-radius: 6;
border-radius: 6px;
color: #ffffff;
font-size: 1.4em;
background: #4d7b94;
padding: 10px 20px 10px 20px;
text-decoration: none;
}
.btn a, .btn a:hover, .btn a:visited {
color: white;
}
.btn:hover {
background: #6caacc;
text-decoration: none;
}