aboutsummaryrefslogtreecommitdiff
path: root/quotes
diff options
context:
space:
mode:
Diffstat (limited to 'quotes')
-rw-r--r--quotes/public/index.html19
-rw-r--r--quotes/public/style.css6
2 files changed, 17 insertions, 8 deletions
diff --git a/quotes/public/index.html b/quotes/public/index.html
index 32a46ec..343f5a3 100644
--- a/quotes/public/index.html
+++ b/quotes/public/index.html
@@ -14,7 +14,12 @@
<title>Zitate</title>
</head>
<body>
- <div>
+ <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>
<form class="pure-form pure-form-stacked" action="api/add" method="post">
<fieldset>
<legend>Zitate</legend>
@@ -27,16 +32,16 @@
</form>
<button id="open_TGI13.1">TGI13.1</button>
- <ul style="display: none;" id="TGI13.1"></ul>
+ <ul style="display: none" id="TGI13.1"></ul>
<button id="open_TGI13.2">TGI13.2</button>
- <ul style="display: none;" id="TGI13.2"></ul>
+ <ul style="display: none" id="TGI13.2"></ul>
<button id="open_TGM13.1">TGM13.1</button>
- <ul style="display: none;" id="TGM13.1"></ul>
+ <ul style="display: none" id="TGM13.1"></ul>
<button id="open_TGM13.2">TGM13.2</button>
- <ul style="display: none;" id="TGM13.2"></ul>
+ <ul style="display: none" id="TGM13.2"></ul>
<button id="open_TGTM13.1">TGTM13.1</button>
- <ul style="display: none;" id="TGTM13.1"></ul>
- </div>
+ <ul style="display: none" id="TGTM13.1"></ul>
+ </main>
<script src="script.js" charset="utf-8"></script>
</body>
diff --git a/quotes/public/style.css b/quotes/public/style.css
index 4ead1a1..0336774 100644
--- a/quotes/public/style.css
+++ b/quotes/public/style.css
@@ -9,6 +9,10 @@ body {
}
div {
+ background: white;
+}
+
+main {
position: absolute;
max-height: 80%;
overflow-y: scroll;
@@ -51,7 +55,7 @@ select {
}
@media only screen and (max-width: 600px) {
- div {
+ main {
width: calc(100% - 50px);
}
}