aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/static
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap/static')
-rw-r--r--bootstrap/static/header.php6
-rw-r--r--bootstrap/static/style.css66
2 files changed, 69 insertions, 3 deletions
diff --git a/bootstrap/static/header.php b/bootstrap/static/header.php
index 37c36ab..a7a5042 100644
--- a/bootstrap/static/header.php
+++ b/bootstrap/static/header.php
@@ -7,18 +7,18 @@
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
- <a class="navbar-brand" href="/">Home</a>
+ <a class="navbar-brand" href="/?page=index">Home</a>
</div>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="nav navbar-nav">
<li>
- <a href="/liste" >Adressliste</a>
+ <a href="/?page=liste" >Adressliste</a>
</li>
<li>
<a href="https://lists.iamfabulous.de/mailman/listinfo/jungegemeinde" >E-Mail Verteiler</a>
</li>
<li>
- <a href="/logout" >Logout</a>
+ <a href="/?page=logout" >Logout</a>
</li>
</ul>
</div>
diff --git a/bootstrap/static/style.css b/bootstrap/static/style.css
new file mode 100644
index 0000000..5821df4
--- /dev/null
+++ b/bootstrap/static/style.css
@@ -0,0 +1,66 @@
+html {
+ position: relative;
+ min-height: 100%;
+}
+
+body {
+ margin-bottom: 60px;
+}
+
+a {
+ color: #3083D6;
+}
+
+/* navbar */
+
+.navbar-default {
+ background-color: #3083D6 ;
+ border-color: #3083D6 ;
+ background: #3083D6 ;
+}
+
+.navbar-default .navbar-brand {
+ color: white;
+}
+
+.navbar-default .navbar-brand:hover,
+.navbar-default .navbar-brand:focus {
+}
+
+.navbar-default .navbar-nav > li > a {
+ color: white;
+}
+
+
+/* footer */
+
+.footer {
+ background-color: #3083D6 ;
+ border-color: #3083D6 ;
+ background: #3083D6 ;
+ color: white ;
+ position: absolute;
+ bottom: 0;
+ width: 100%;
+}
+
+#copyright-text {
+ color: white;
+}
+
+/* noscript */
+
+.noscript {
+ background-color: red;
+ color: white;
+}
+
+.table-center {
+ margin: 0 auto !important;
+ float: none !important;
+}
+
+.disabled {
+ color: #5E5E5E;
+ text-decoration: line-through;
+}