diff --git a/example/toderp2/css/app.css b/example/toderp2/css/app.css
index 055c74a63d..354864c96b 100644
--- a/example/toderp2/css/app.css
+++ b/example/toderp2/css/app.css
@@ -13,16 +13,39 @@
margin-left: -128px;
width: 256px;
}
+.toderp-logo {
+ background: url('../img/toderp-logo.svg') no-repeat transparent;
+ background-size: contain;
+ width: 250px;
+ height: 100px;
+ margin: 40px auto;
+}
#splash-view {
opacity: 1;
}
#splash-view .ionic-logo {
}
+#splash-view, #signup-view {
+ background: url('../img/splash.png') no-repeat transparent;
+ background-size: contain;
+}
+
#signup-bottom {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
text-align: center;
+ color: #fff;
+}
+#signup-bottom .button {
+ color: #4a87ee;
+}
+
+@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
+ #signup-view {
+ background: url('../img/splash@2x.png') no-repeat transparent;
+ background-size: contain;
+ }
}
diff --git a/example/toderp2/img/logo.png b/example/toderp2/img/logo.png
new file mode 100644
index 0000000000..67616b507f
Binary files /dev/null and b/example/toderp2/img/logo.png differ
diff --git a/example/toderp2/img/logo@2x.png b/example/toderp2/img/logo@2x.png
new file mode 100644
index 0000000000..9095d89140
Binary files /dev/null and b/example/toderp2/img/logo@2x.png differ
diff --git a/example/toderp2/img/splash.png b/example/toderp2/img/splash.png
new file mode 100644
index 0000000000..44c63b62fd
Binary files /dev/null and b/example/toderp2/img/splash.png differ
diff --git a/example/toderp2/img/splash@2x.png b/example/toderp2/img/splash@2x.png
new file mode 100644
index 0000000000..629599bb13
Binary files /dev/null and b/example/toderp2/img/splash@2x.png differ
diff --git a/example/toderp2/img/toderp-logo.svg b/example/toderp2/img/toderp-logo.svg
new file mode 100644
index 0000000000..8acedd6a75
--- /dev/null
+++ b/example/toderp2/img/toderp-logo.svg
@@ -0,0 +1,162 @@
+
+
+
+
diff --git a/example/toderp2/index.html b/example/toderp2/index.html
index 574642b0ef..da057db3af 100644
--- a/example/toderp2/index.html
+++ b/example/toderp2/index.html
@@ -38,35 +38,34 @@