diff options
Diffstat (limited to 'static/css/sticky-footer.css')
-rw-r--r-- | static/css/sticky-footer.css | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/static/css/sticky-footer.css b/static/css/sticky-footer.css new file mode 100644 index 0000000..ea445db --- /dev/null +++ b/static/css/sticky-footer.css @@ -0,0 +1,86 @@ +/* Navbar */ +.navbar-custom { + background: linear-gradient(135deg , #3D5A50,#3D5A50 30%, #13ee81 ); + color:black; + border-radius:0; +} + +/* Text color */ +.navbar-custom .navbar-nav > li > a { + color:#fff; +} + +.navbar .dropdown-toggle, .navbar .dropdown-menu a { + cursor: pointer; +} + + +/* Brand-CompanyName */ +.navbar-custom .navbar-brand { + color:#efefef; + background-color: #3D5A50; +} + + +.navbar-custom .navbar-brand:hover{ + color: white; +} + + +.navbar .dropdown-item.active, .navbar .dropdown-item:active { + color: inherit; + text-decoration: none; + background-color: inherit; +} + +.navbar .dropdown-item:focus, .navbar .dropdown-item:hover { + color: #16181b; + text-decoration: none; + background-color: #f8f9fa; +} + +@media (min-width: 767px) { + .navbar .dropdown-toggle:not(.nav-link)::after { + display: inline-block; + width: 0; + height: 0; + margin-left: .5em; + vertical-align: 0; + border-bottom: .3em solid transparent; + border-top: .3em solid transparent; + border-left: .3em solid; + } +} + +/* Submenu */ +.dropdown-submenu { + position: relative; +} + +.dropdown-submenu a::after { + transform: rotate(-90deg); + position: absolute; + right: 6px; + top: .8em; +} + +.dropdown-submenu .dropdown-menu { + top: 0; + left: 100%; + margin-left: .1rem; + margin-right: .1rem; +} + + +/** + * Footer Styles + */ + +.footer { + position: fixed; + right: 0; + bottom: 0; + left: 0; + background-color: #efefef; + text-align: center; +}
\ No newline at end of file |