Advertisement
Guest User

parsons top shelf

a guest
Sep 25th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.42 KB | None | 0 0
  1. /* PARSONS TOP MENU CODE */
  2.  
  3. .primary-nav div img {
  4.   height: 70px;
  5.   margin-top: 0px;
  6.   margin-left: 10px;
  7. }
  8. nav.primary-nav, .primary-nav nav {
  9.     height: 50px;
  10.     width: 100%;
  11.     display: inline-flex;
  12.     font-family: "neue", sans-serif;
  13.     position: fixed;
  14. /*
  15.     margin-top: -52px;
  16.     box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
  17. */
  18. }
  19.  
  20. li.social, .social li {
  21.     margin-right: -15px;   
  22. }
  23. li.social img, .social li img {
  24.     height: 18px !important;
  25.     margin-left: 0px !important;
  26.     margin-top: 0px !important;
  27. }
  28. #navicon {
  29.     float: right;
  30.     top: -34px;
  31.     right: 10px;
  32.     cursor: pointer;
  33.     position: relative;
  34.     display: none;
  35. }
  36. .menu-parsons-menu-container {
  37.     display: inline-flex;
  38.     width: 100%;
  39.     height: 50px;
  40.     background-color: #fff;
  41.     z-index: 1;
  42. }
  43. ul#menu-parsons-menu {
  44.     display: inline-flex;
  45.     z-index: 1;
  46.     width: 80%;
  47.     padding-right: 20px;
  48.     justify-content: flex-end;
  49.     margin-top: 17px;
  50. }
  51. .primary-nav {
  52.     background-color: white;
  53.     font-family: "neue", sans-serif !important;
  54.     position: fixed;
  55.     z-index: 1111111;
  56. /*    margin-top: -35px;*/
  57. }
  58.  
  59. .primary-nav div img {
  60.      height: 40px;
  61.     margin-top: 5px;
  62.     margin-left: 55px;
  63. }
  64. .primary-nav ul {
  65.     width: 80%;
  66.     padding-right: 20px;
  67.     justify-content: flex-end;
  68.     display: inline-flex;
  69.     list-style: none;
  70.     display: none;
  71. /*    -webkit-padding-start: 0 !important; */
  72.    
  73. }
  74. .primary-nav ul li a {
  75.     color: black;
  76.     font-size: 12px;
  77.     margin-right: 20px;
  78.     font-family: "neue", sans-serif !important;
  79.     font-weight: 400;
  80. }
  81.  
  82. .primary-nav ul li a:hover {
  83.     background: none !important;
  84.     text-decoration: none;
  85. }
  86.  
  87. .menu a:hover {
  88. /*    background-color: none !important;*/
  89. }
  90.  
  91. ul#menu-parsons-menu {
  92.     display: inline-flex;
  93.     z-index: 1;
  94.     width: 80%;
  95.     padding-right: 20px;
  96.     justify-content: flex-end;
  97.     margin-top: 17px;
  98. }
  99.  
  100. ul#menu-parsons-menu li a {
  101.     text-transform: none;
  102.     text-decoration: none;
  103.     padding: 0;
  104. }
  105.  
  106. .menu-parsons-menu-container {
  107.     display: inline-flex;
  108.     width: 100%;
  109.     height: 50px;
  110.     background-color: #fff;
  111.     z-index: 1;
  112. }
  113.  
  114. .top_logo {
  115.     z-index: 11111;
  116. }
  117.  
  118. @media screen and (max-width: 600px){
  119.  
  120.     .primary-nav div img {
  121.         height: 40px;
  122.         margin-top: 5px;
  123.         margin-left: 0px !important;
  124.     }
  125.     .menu-parsons-menu-container {
  126.         display: none;
  127.     }
  128.  
  129. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement