Skip to content

Commit

Permalink
Cut 0.3.0 release. Includes designer
Browse files Browse the repository at this point in the history
  • Loading branch information
ebidel committed May 28, 2014
1 parent 6f78d6f commit e438bfc
Show file tree
Hide file tree
Showing 8 changed files with 61 additions and 13 deletions.
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ kramdown:
# Site globals used throughout docs.
load_platform: true
project_title: Polymer
latest_version: 0.2.4
latest_version: 0.3.0
add_permalinks: true # adds permalinks to heading tags.
load_disqus: true
2 changes: 1 addition & 1 deletion app.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
application: polymer-project
version: 20140519
version: 20140527
runtime: python27
api_version: 1
threadsafe: yes
Expand Down
2 changes: 1 addition & 1 deletion css/homepage.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions elements/common_elements.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,5 @@
<link rel="import" href="../elements/demo-tabs.html">
<link rel="import" href="../elements/page-scrim.html">
<link rel="import" href="../elements/dropdown-panel.html">

<link rel="import" href="/elements/core-tooltip.html">
2 changes: 1 addition & 1 deletion polymer-all/labs
Submodule labs updated from 8eb7bc to 6158b9
6 changes: 6 additions & 0 deletions resources/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ including polyfill repos, tools, projects, and UI elements.
{% endcomment %}


## v0.3.0 {#r2014-05-27}

Released 2014-05-27. See the [full list of changes](https://github.com/Polymer/polymer/releases/tag/0.3.0).

---

## v0.2.4 {#r2014-05-12}

Released 2014-05-12. See the [full list of changes](https://github.com/Polymer/polymer/releases/tag/0.2.4).
Expand Down
56 changes: 48 additions & 8 deletions sass/homepage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@
@import "spec";
@import "polymer";

.h1heading {
font-size: 35px;
}

.h5heading {
font-size: $font-size-secondary;
font-weight: normal;
color: $secondary-heading-color;
line-height: 24px;
letter-spacing: 0.01em;
margin-top: 6px;
margin-bottom: 18px;
}

section {
border-bottom: 1px solid $main-bg;
}
Expand Down Expand Up @@ -136,16 +150,10 @@ site-banner .logo {
padding: $box-size / 4 35px;
}
h1 {
font-size: 35px;
@extend .h1heading;
}
h5 {
font-size: $font-size-secondary;
font-weight: normal;
color: $secondary-heading-color;
line-height: 24px;
letter-spacing: 0.01em;
margin-top: 6px;
margin-bottom: 18px;
@extend .h5heading;
}
p {
font-size: $font-size-secondary;
Expand All @@ -157,3 +165,35 @@ site-banner .logo {
width: auto;
}
}

#quickstart {
h1 {
@extend .h1heading;
}
h5 {
@extend .h5heading;
}
.panel {
@include flex-direction(column);
}
.example {
@include display-flex;
border-bottom: 1px solid $main-bg;
padding: $content-padding 0;

heading {
@include align-self(center);
@include flex(1 0 auto);

h2 {
line-height: 1;
}
}
.paper-button {
margin-top: $additonalPadding;
}
> div {
@include flex(0 1 50%);
}
}
}

0 comments on commit e438bfc

Please sign in to comment.