summaryrefslogtreecommitdiff
path: root/static/css/style.css
diff options
context:
space:
mode:
authorhorus_arch2015-04-19 22:09:52 +0200
committerhorus_arch2015-04-19 22:09:52 +0200
commit01e9a34952bd6ddd383680b0ca2312e476ad07a6 (patch)
tree00902575e5c271cc5d35ea65aa8795b8caeb97bc /static/css/style.css
downloadmandible-01e9a34952bd6ddd383680b0ca2312e476ad07a6.tar.gz
Initial commit.
Diffstat (limited to 'static/css/style.css')
-rw-r--r--static/css/style.css83
1 files changed, 83 insertions, 0 deletions
diff --git a/static/css/style.css b/static/css/style.css
new file mode 100644
index 0000000..3546982
--- /dev/null
+++ b/static/css/style.css
@@ -0,0 +1,83 @@
+html {
+ position: relative;
+ min-height: 100%;
+}
+body {
+ margin-bottom: 100px;
+}
+.navbar-default .navbar-brand {
+ color: white;
+}
+.navbar-default .navbar-nav > li > a {
+ color: white;
+}
+.navbar-default .navbar-nav > li > a:hover {
+ color: white;
+ text-decoration: underline;
+}
+/*
+noscript {
+ background-color: #dd5148;
+ color: white;
+}
+*/
+.shadow-y-2{box-shadow:0 -3px 10px rgba(0,0,0,.23),0 -3px 10px rgba(0,0,0,.16)}
+.footer {
+ position: absolute;
+ bottom: 0;
+ width: 100%;
+ height: 40px;
+ background-color: #009587;
+ border-color: #009587;
+ background: #009587;
+ color: white ;
+}
+.footer-div {
+ padding-top: 10%;
+}
+.footer-a {
+ color: white;
+}
+.footer-a:link,
+.footer-a:hover,
+.footer-a:visited,
+.footer-a:active {
+ color: white;
+ text-decoration: underline;
+}
+.footer > .container {
+ padding-left: 0;
+}
+.sticky-footer {
+ margin: 10px 0;
+ margin-left: 0;
+}
+
+/*
+nav {
+ background-color:;
+}
+.black {
+ background-color: black !important;
+ color: white;
+}
+.black > .container {
+ background-color: black;
+}
+*/
+
+.expand {
+ width: 220px;
+ transition:width 0.3s ease-in-out;
+ -webkit-transition:width 0.3s ease-in-out;
+}
+
+.expand:focus {
+ width:100%;
+ -webkit-transition:width 0.5s ease-in-out;
+ transition:width 0.5s ease-in-out;
+}
+
+.underline {
+ text-decoration: underline;
+}