123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- header nav {
- margin: -8px -15px;
- }
- .navbar-header {
- position: relative;
- }
- .navbar-brand {
- color: #fff;
- float: left;
- font-size: 18px;
- font-weight: bold;
- height: 56px;
- line-height: 20px;
- padding: 17px 15px;
- text-decoration: none;
- }
- .navbar-brand:hover {
- color: #fff;
- text-decoration: none;
- }
- .navbar-toggle {
- border-radius: 4px;
- border: 1px solid #fff;
- float: right;
- margin-bottom: 8px;
- margin-right: 15px;
- margin-top: 8px;
- padding: 4px 10px;
- }
- .navbar-nav {
- -ms-flex-direction: column;
- background-color: #205081;
- border-radius: 4px;
- border: 1px solid #fff;
- display: -ms-flexbox;
- display: flex;
- flex-direction: column;
- left: 15px;
- list-style: none;
- margin: 0;
- padding: 0;
- position: absolute;
- right: 15px;
- top: 47px;
- }
- .navbar-nav ul {
- list-style: none;
- margin: 0;
- padding: 0;
- }
- .navbar-nav.closed {
- display: none;
- }
- .nav-item {
- border-bottom: 1px solid #35689c;
- }
- .nav-item:last-child {
- border-bottom: none;
- }
- .nav-link {
- color: rgba(255, 255, 255, .75);
- display: block;
- padding: 8px 15px;
- text-decoration: none;
- }
- .nav-link:hover {
- color: rgba(255, 255, 255, 1);
- text-decoration: none;
- }
- .dropdown-item {
- border-top: 1px solid #35689c;
- color: rgba(255, 255, 255, .75);
- display: block;
- padding: 8px 15px;
- padding-left: 30px;
- }
- .dropdown-item:hover {
- color: rgba(255, 255, 255, 1);
- text-decoration: none;
- }
- .dropdown-divider {
- display: none;
- }
- @media (min-width: 768px) {
- .navbar-toggle {
- display: none;
- }
- .navbar-nav {
- background-color: transparent;
- border: none;
- display: block;
- height: 56px;
- position: static;
- }
- .navbar-nav.closed {
- display: block;
- }
- .nav-item {
- display: block;
- float: left;
- height: 56px;
- }
- .nav-item.right {
- float: right;
- }
- .nav-link {
- height: 56px;
- line-height: 20px;
- padding: 17px 15px;
- }
- .dropdown {
- position: relative;
- }
- .dropdown-menu {
- background-clip: padding-box;
- background-color: #fff;
- border-radius: 0.25rem;
- border: 1px solid rgba(0, 0, 0, .15);
- color: #212529;
- display: none;
- font-size: 1rem;
- margin-left: 15px;
- margin-top: -15px;
- min-width: 10rem;
- padding-left: 0px;
- padding: 0.5rem 0;
- position: absolute;
- text-align: left;
- top: 100%;
- z-index: 1000;
- }
-
- .dropdown:hover .dropdown-menu {
- display: block;
- }
- .dropdown-item {
- background-color: transparent;
- border: 0;
- clear: both;
- color: #1e375a;
- display: block;
- font-weight: 400;
- padding: 0.25rem 1.5rem;
- text-align: inherit;
- white-space: nowrap;
- width: 100%;
- }
- .dropdown-item:hover {
- background-color: #eee;
- color: #1e375a;
- text-decoration: none;
- }
- .dropdown-divider {
- border-top: 1px solid #e9ecef;
- display: block;
- height: 0;
- margin: 0.5rem 0;
- overflow: hidden;
- }
- .right .dropdown-menu {
- left: auto;
- margin-left: 0;
- margin-right: 15px;
- right: 0;
- }
- }
|