Skip to content

Instantly share code, notes, and snippets.

@sjmiles
Last active December 12, 2015 08:19
Show Gist options
  • Save sjmiles/4743423 to your computer and use it in GitHub Desktop.
Save sjmiles/4743423 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Html Button</title>
<script src="../platform/platform.js"></script>
</head>
<body>
<element name="x-button" extends="button">
<template>
<style scoped>
@host {
-moz-appearance: button;
-webkit-appearance: button;
padding: 2px 6px 3px;
-webkit-user-select: none;
-moz-user-select: none;
cursor: default;
}
</style>
<content></content>
</template>
</element>
<x-button>I'm really a Button (and an x-button)</x-button>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment