diff options
Diffstat (limited to 'mottovote')
-rw-r--r-- | mottovote/public/index.html | 5 | ||||
-rw-r--r-- | mottovote/public/style.css | 6 |
2 files changed, 10 insertions, 1 deletions
diff --git a/mottovote/public/index.html b/mottovote/public/index.html index 0bffbdd..c562fa7 100644 --- a/mottovote/public/index.html +++ b/mottovote/public/index.html @@ -14,6 +14,11 @@ </head> <body> + <div class="pure-menu pure-menu-horizontal"> + <a href="/" class="pure-menu-item pure-menu-link">Home</a> + <a href="/auth/api/logout" class="pure-menu-item pure-menu-link">Logout</a> + </div> + <main> <div id="vote"></div> <button class="pure-button pure-button-primary" id="voteButton">Vote!</button> diff --git a/mottovote/public/style.css b/mottovote/public/style.css index 6e735e3..7f92570 100644 --- a/mottovote/public/style.css +++ b/mottovote/public/style.css @@ -8,6 +8,10 @@ body { background-image: linear-gradient(315deg, #eec0c6 0%, #7ee8fa 74%); } +div { + background: white; +} + main { display: flex; flex-flow: row wrap; @@ -49,7 +53,7 @@ select { } @media only screen and (max-width: 600px) { - div { + main { width: calc(100% - 50px); } } |