Created
November 3, 2015 21:10
-
-
Save elgomy/f616a42cfcfa36a1f851 to your computer and use it in GitHub Desktop.
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
<script src="bower_components/webcomponentsjs/webcomponents-lite.js"></script> | |
<link rel="import" href="bower_components/polymer/polymer.html"> | |
<link rel="import" href="bower_components/iron-icons/iron-icons.html"> | |
<link rel="import" href="bower_components/iron-icon/iron-icon.html"> | |
<link rel="import" href="theme.html"> | |
</head> | |
<body> | |
<iron-icon icon="home"></iron-icon> | |
</body> | |
</html> |
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
<style is="custom style"> | |
iron-icon{ | |
--iron-icon-width:100px; | |
--iron-icon-height:100px; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment