12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /* ==========================================================================
  2. Navbar
  3. ========================================================================== */
  4. .navbar-version {
  5. font-size: 10px;
  6. color: #ccc;
  7. }
  8. .jh-navbar {
  9. background-color: #353d47;
  10. padding: 0.2em 1em;
  11. .profile-image {
  12. margin: -10px 0px;
  13. height: 40px;
  14. width: 40px;
  15. border-radius: 50%;
  16. }
  17. .dropdown-item.active,
  18. .dropdown-item.active:focus,
  19. .dropdown-item.active:hover {
  20. background-color: #353d47;
  21. }
  22. .dropdown-toggle::after {
  23. margin-left: 0.15em;
  24. }
  25. ul.navbar-nav {
  26. padding: 0.5em;
  27. .nav-item {
  28. margin-left: 1.5rem;
  29. }
  30. }
  31. a.nav-link {
  32. font-weight: 400;
  33. }
  34. .jh-navbar-toggler {
  35. color: #ccc;
  36. font-size: 1.5em;
  37. padding: 10px;
  38. &:hover {
  39. color: #fff;
  40. }
  41. }
  42. }
  43. @media screen and (min-width: 768px) {
  44. .jh-navbar-toggler {
  45. display: none;
  46. }
  47. }
  48. @media screen and (max-width: 992px) {
  49. .jh-logo-container {
  50. width: 100%;
  51. }
  52. }
  53. .navbar-title {
  54. display: inline-block;
  55. vertical-align: middle;
  56. }
  57. /* ==========================================================================
  58. Logo styles
  59. ========================================================================== */
  60. .navbar-brand {
  61. &.logo {
  62. padding: 5px 15px;
  63. .logo-img {
  64. height: 45px;
  65. width: 70px;
  66. display: inline-block;
  67. vertical-align: middle;
  68. background: url('../../../content/images/logo-jhipster.png') no-repeat center center;
  69. background-size: contain;
  70. }
  71. }
  72. }