diff options
author | Akshen | 2019-02-22 12:49:43 +0530 |
---|---|---|
committer | Akshen | 2019-02-22 12:49:43 +0530 |
commit | eed46efdccfb2821cb07b6a189f439ba6f7bb3f2 (patch) | |
tree | 6c76aec2be2bf58978b638ef0f7209c8bbadb4bc /fossee_manim/static/css/sticky-footer.css | |
parent | df35e10de960c0a2566df002faa1f8fa7828ba51 (diff) | |
download | FOSSEE_animations-eed46efdccfb2821cb07b6a189f439ba6f7bb3f2.tar.gz FOSSEE_animations-eed46efdccfb2821cb07b6a189f439ba6f7bb3f2.tar.bz2 FOSSEE_animations-eed46efdccfb2821cb07b6a189f439ba6f7bb3f2.zip |
Basic Feature Working
- Register
- Sendmail
- Login/Logout
- Index page
- View profile
- NavBar fixed
Diffstat (limited to 'fossee_manim/static/css/sticky-footer.css')
-rw-r--r-- | fossee_manim/static/css/sticky-footer.css | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/fossee_manim/static/css/sticky-footer.css b/fossee_manim/static/css/sticky-footer.css new file mode 100644 index 0000000..ea445db --- /dev/null +++ b/fossee_manim/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 |