Build Your Own Website with Polymer Starter Kit

Change the Title

app/index.hmtl line 19

<title>Web Components 4 Kids Project</title>

see it on github

Change the App Name

app/index.hmtl line 104

<div class="app-name">Web Components 4 Kids Project</div>

see it on github

Add a Card

app/index.html line 119

<paper-material elevation="1">
  <p class="paper-font-body2">This is the card content.</p>
</paper-material>

see it on github

Add a Section

app/index.html line 77

<a data-route="devoxx4kids" href="/devoxx4kids">
  <iron-icon icon="thumb-up"></iron-icon>
  <span>Devoxx4Kids</span>
</a>

app/index.html line 133

<section data-route="devoxx4kids">
  <paper-material elevation="1">
    <h2 class="paper-font-display2">Devoxx4Kids</h2>
    <p>I love Devoxx4Kids!!!</p>
  </paper-material>
</section>

app/elements/routing.html line 22

page('/devoxx4kids', function () {
  app.route = 'devoxx4kids';
});

see it on github

Icons

Look at all the Polymer Iron Icons for the menu.

Change the Theme

  1. Select the desired theme from materialpalette.com
  2. Download the Polymer version
  3. Update the root of app/styles/app-theme.html at line 25.
--dark-primary-color:       #FBC02D;
--default-primary-color:    #FFEB3B;
--light-primary-color:      #FFF9C4;
--text-primary-color:       #212121;
--accent-color:             #9E9E9E;
--primary-background-color: #FFF9C4;
--primary-text-color:       #212121;
--secondary-text-color:     #727272;
--disabled-text-color:      #BDBDBD;
--divider-color:            #B6B6B6;

see it on github

results matching ""

    No results matching ""