diff --git a/website/static/css/custom.css b/website/static/css/custom.css index a7b588e6b..4ebd2359a 100644 --- a/website/static/css/custom.css +++ b/website/static/css/custom.css @@ -288,6 +288,10 @@ table tr:hover { background: #f5f5f5; } +footer .sitemap { + overflow: hidden; +} + footer .sitemap .nav-home, footer .fbOpenSource { opacity: 1; @@ -369,3 +373,18 @@ footer iframe { /* Hide sidebar link to "Features"-pages, because it is linked in header */ display: none !important; } + +.content.row { + position: relative; +} + +.content.row:not(:last-child)::after { + display: block; + height: 1px; + left: 25%; + right: 25%; + bottom: -10px; + background: #f0f0f0; + content: ''; + position: absolute; +}