Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Expanded demo #7

Merged
merged 1 commit into from
Jul 23, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 24 additions & 4 deletions demo.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,38 @@
-webkit-transform: translateZ(0);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would you mind setting color:#fff too? I think the buttons look nicer with a white icon.

}

paper-fab {
color: #FFF;
margin-right:2em;
}

paper-fab.blue {
background: #5677fc;
}

paper-fab.green {
background: #259b24;
}

paper-fab.yellow {
background: #ffeb3b;
color: #000;
}

</style>

</head>
<body unresolved>

<h3>Regular</h3>

<paper-fab icon="arrow-forward"></paper-fab>
<paper-fab icon="create" class="blue"></paper-fab>

<br>
<br>
<br>
<h3>Mini</h3>

<paper-fab class="mini" icon="arrow-forward"></paper-fab>
<paper-fab icon="done" class="mini green"></paper-fab>
<paper-fab icon="reply" class="mini yellow"></paper-fab>

</body>
</html>