From 022cdb3bb9362827f386b77166bc46b63f4bd377 Mon Sep 17 00:00:00 2001 From: "Scott J. Miles" Date: Wed, 2 Oct 2013 18:47:41 -0700 Subject: [PATCH] add 'basic-app' experimental element(s) --- polymer-ui-basic-app/index.html | 76 +++++++++++++ polymer-ui-basic-app/metadata.html | 53 ++++++++++ polymer-ui-basic-app/polymer-ui-basic-app.css | 22 ++++ .../polymer-ui-basic-app.html | 100 ++++++++++++++++++ 4 files changed, 251 insertions(+) create mode 100644 polymer-ui-basic-app/index.html create mode 100644 polymer-ui-basic-app/metadata.html create mode 100644 polymer-ui-basic-app/polymer-ui-basic-app.css create mode 100644 polymer-ui-basic-app/polymer-ui-basic-app.html diff --git a/polymer-ui-basic-app/index.html b/polymer-ui-basic-app/index.html new file mode 100644 index 0000000..1097243 --- /dev/null +++ b/polymer-ui-basic-app/index.html @@ -0,0 +1,76 @@ + + + + polymer-ui-basic-app + + + + + + +

basic-app

+ + + + + + + Item + Item + + +
+ Content. +
+ + + + Item + Item + + + +
+ +

basic-app2 (same content)

+ + + + + + + Item + Item + + +
+ Content. +
+ + + + Item + Item + + + +
+ + diff --git a/polymer-ui-basic-app/metadata.html b/polymer-ui-basic-app/metadata.html new file mode 100644 index 0000000..8284939 --- /dev/null +++ b/polymer-ui-basic-app/metadata.html @@ -0,0 +1,53 @@ + + + + + + + + + \ No newline at end of file diff --git a/polymer-ui-basic-app/polymer-ui-basic-app.css b/polymer-ui-basic-app/polymer-ui-basic-app.css new file mode 100644 index 0000000..6812602 --- /dev/null +++ b/polymer-ui-basic-app/polymer-ui-basic-app.css @@ -0,0 +1,22 @@ +/* +Copyright 2013 The Polymer Authors. All rights reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file. +*/ +@host { + display: block; + position: relative; +} + +.animate { + -webkit-transition: left ease-in 0.2s; + transition: left ease-in 0.2s; +} + +polymer-ui-sidebar-menu { + width: 200px; +} + +section { + background-color: white; +} \ No newline at end of file diff --git a/polymer-ui-basic-app/polymer-ui-basic-app.html b/polymer-ui-basic-app/polymer-ui-basic-app.html new file mode 100644 index 0000000..b90a3f7 --- /dev/null +++ b/polymer-ui-basic-app/polymer-ui-basic-app.html @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file