forked from Polymer/old-docs-site
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding post-card.html to avoid 404s in first step solution.
- Loading branch information
Arthur Evans
committed
Jun 24, 2014
1 parent
cdf3af1
commit 572d332
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<link rel="import" href="../components/polymer/polymer.html"> | ||
<link rel="import" href="../components/core-icon-button/core-icon-button.html"> | ||
|
||
<polymer-element name="post-card"> | ||
<template> | ||
<style> | ||
:host { | ||
display: block; | ||
position: relative; | ||
background-color: white; | ||
padding: 20px; | ||
width: 100%; | ||
font-size: 1.2rem; | ||
font-weight: 300; | ||
} | ||
.card-header { | ||
margin-bottom: 10px; | ||
} | ||
|
||
</style> | ||
|
||
<!-- CARD CONTENTS GO HERE --> | ||
|
||
</template> | ||
<script> | ||
Polymer({}); | ||
</script> | ||
</polymer-element> |