diff --git a/gedgo/static/styles/style-default.css b/gedgo/static/styles/style-default.css index aaca3d5..99f4683 100644 --- a/gedgo/static/styles/style-default.css +++ b/gedgo/static/styles/style-default.css @@ -1,10 +1,16 @@ /* Move down content because we have a fixed navbar that is 50px tall */ body { - background-color: #F5F8FA; + background-color: #d5dce0; + font-family: Camphor, Open Sans, Segoe UI, sans-serif; + text-rendering: optimizeLegibility; +} + +a { + color: #537484; } .navbar { - background-color: #3097D1 !important; + background-color: #538463 !important; } .navbar-nav li a { color: #fcfcfc !important; @@ -13,10 +19,10 @@ body { color: #666 !important; } .navbar-nav .active a { - background-color: #3097D1 !important; + background-color: #6e9b7d !important; } .navbar-nav .open .dropdown-toggle { - background-color: #3097D1 !important; + background-color: #6e9b7d !important; } .navbar-brand { @@ -28,6 +34,7 @@ body { } .main { + margin: 5px; color: #666; background-color: #fff; padding: 20px; @@ -72,6 +79,11 @@ body { max-width: 100%; margin-bottom: 10px; } + +.research-file-item { + min-height: 64px; +} + .comment-area { resize: none; } diff --git a/gedgo/templates/default/base.html b/gedgo/templates/default/base.html index 042470d..d3cfc30 100644 --- a/gedgo/templates/default/base.html +++ b/gedgo/templates/default/base.html @@ -6,6 +6,7 @@ + {% block headappend %}{% endblock %}