aboutsummaryrefslogtreecommitdiff
path: root/src/web/static/css/customized-bootstrap.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/static/css/customized-bootstrap.css')
-rw-r--r--src/web/static/css/customized-bootstrap.css49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/web/static/css/customized-bootstrap.css b/src/web/static/css/customized-bootstrap.css
new file mode 100644
index 00000000..9f3febfc
--- /dev/null
+++ b/src/web/static/css/customized-bootstrap.css
@@ -0,0 +1,49 @@
+body {
+ margin-top: 50px;
+}
+div.top {
+ position: relative;
+ top: -50px;
+ display: block;
+ height: 0;
+}
+
+.navbar-custom {
+ background-color: #205081;
+ border: #205081;
+ border-radius: 0;
+}
+
+.navbar-custom .navbar-nav > li > a {
+ color: #FFFFFF;
+}
+
+.navbar-custom .navbar-nav > li > a:hover {
+ background-color: #3572B0;
+}
+
+.navbar-custom .navbar-nav > .active > a,
+.navbar-nav > .active > a:hover,
+.navbar-nav > .active > a:focus {
+ color: #FFFFFF;
+ background-color: #3572B0;
+}
+.navbar-custom .navbar-brand {
+ color: #FFFFFF;
+}
+
+.navbar-custom .navbar-nav > .open > a,
+.navbar-custom .navbar-nav > .open > a:hover,
+.navbar-custom .navbar-nav > .open > a:focus {
+ color: #FFFFFF;
+ background-color: #3572B0;
+}
+a {
+ color: #3572B0;
+}
+
+.input-group-inline {
+ min-width: 0;
+ width: 200px;
+ display: inline;
+}
bgstack15