summaryrefslogtreecommitdiff
path: root/static/css
diff options
context:
space:
mode:
authorHorus32015-02-19 13:30:54 +0100
committerHorus32015-02-19 13:30:54 +0100
commit02e6a8b9ae3596ee1c405cdd1541c5cc59b50e3a (patch)
tree157a800cc381e78bb03b8868417db8fe12ca8239 /static/css
parentd9749f16e15739c7652b05af391af9e59e2307d6 (diff)
downloadstatuspage-02e6a8b9ae3596ee1c405cdd1541c5cc59b50e3a.tar.gz
Static file handling and autoimport the db-driver from Makefile.
Diffstat (limited to 'static/css')
-rw-r--r--static/css/style.css72
1 files changed, 72 insertions, 0 deletions
diff --git a/static/css/style.css b/static/css/style.css
new file mode 100644
index 0000000..2da531b
--- /dev/null
+++ b/static/css/style.css
@@ -0,0 +1,72 @@
+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;
+}
+
+.noscript {
+ background-color: #dd5148;
+ color: white;
+}
+
+/* footer */
+
+.footer {
+ background-color: #3083D6 ;
+ border-color: #3083D6 ;
+ background: #3083D6 ;
+ color: white ;
+ position: absolute;
+ bottom: 0;
+ width: 100%;
+}
+
+.footer-a {
+ color: white;
+}
+
+.footer-a:hover {
+ color: white;
+ text-decoration: underline;
+}
+
+.underline {
+ text-decoration: underline;
+}
+
+.actives {
+ color: white !important;
+/* text-decoration: underline; */
+ font-weight: bold;
+}
+
+.grey {
+ color: #737373;
+}