Skip to content

Instantly share code, notes, and snippets.

@glabra
Created December 2, 2017 20:39
Show Gist options
  • Save glabra/f4e189ab3d5c94daf6687ef7f0028bef to your computer and use it in GitHub Desktop.
Save glabra/f4e189ab3d5c94daf6687ef7f0028bef to your computer and use it in GitHub Desktop.
/* * buttonlike link * */
/* firefox */
@-moz-document url-prefix() {
.buttonlike {
text-decoration: none;
color: initial;
text-indent: 0;
-moz-appearance: button;
font-size: small;
vertical-align: middle;
padding: .1ex 1ex;
}
}
/* Chromium and Safari */
@media screen and (-webkit-min-device-pixel-ratio:0) {
.buttonlike {
text-decoration: none;
color: initial;
text-indent: 0;
-webkit-appearance: button;
font-size: x-small;
vertical-align: text-top;
padding: .5ex 1em;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment