summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--client/colors.less15
-rw-r--r--client/templates/photos.html1
2 files changed, 16 insertions, 0 deletions
diff --git a/client/colors.less b/client/colors.less
index 5c1980d..53ca797 100644
--- a/client/colors.less
+++ b/client/colors.less
@@ -149,6 +149,21 @@ body {
}
}
div.photos-wrapper {
+ a.start-over {
+ position: fixed;
+ left: 0;
+ top: 50%;
+ -webkit-transform: rotate(-90deg);
+ -moz-transform: rotate(-90deg);
+ transform: rotate(-90deg);
+ font-family: 'Cutive Mono', serif;
+ color: black;
+ border-bottom: 1px black solid;
+ &:hover, &:active {
+ color: white;
+ background-color: black;
+ }
+ }
ol.steps {
display: block;
text-align: center;
diff --git a/client/templates/photos.html b/client/templates/photos.html
index be52338..ec36c34 100644
--- a/client/templates/photos.html
+++ b/client/templates/photos.html
@@ -1,5 +1,6 @@
<template name="photos">
<div class="photos-wrapper">
+ <a class="start-over" href="/dates">Start Over</a>
<ol class="steps">
{{#each steps}}
{{> step}}