Last active
August 29, 2015 14:04
-
-
Save Fannon/31acdce9be1b80737f01 to your computer and use it in GitHub Desktop.
MediaWiki Buttons
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** Buttons Style **/ | |
input[type=button], input[type=submit] { | |
border-radius: 3px; | |
border: none; | |
background: #128FBD; | |
color: #FFF; | |
padding: 6px 8px; | |
cursor: pointer; | |
user-select: none; | |
} | |
input[type=button]:hover, input[type=submit]:hover { | |
opacity: 0.85; | |
} | |
input[type=submit] { | |
background: #6BBD12; | |
} | |
input#wpDiff { | |
background: #128FBD; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment