Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.99 KB | None | 0 0
  1. /*# region Navigation Menu */
  2.  
  3. .navigation-menu {
  4.     display: flex;
  5.     justify-content: flex-end;
  6. }
  7.  
  8. .navigation-menu__item {
  9.     margin-top: 2px;
  10.     padding: 4px 37px 4px 3px;
  11.     vertical-align: top;
  12.     font-size: 0;
  13.     line-height: 0;
  14. }
  15.  
  16. .navigation-menu__item:first-of-type {
  17.     margin-left: 10px;
  18. }
  19.  
  20. .navigation-menu__item--dropdown {
  21.     margin-top: -3px;
  22. }
  23.  
  24. .navigation-menu__link {
  25.     color: #fff;
  26.     font-size: 16px;
  27.     line-height: 20px;
  28.     text-decoration: none;
  29.     cursor: pointer;
  30. }
  31.  
  32. .navigation-menu__link:hover, .navigation-menu__link:active {
  33.     color: #f9f950;
  34. }
  35.  
  36. @media screen and (max-device-width: 1360px) {
  37.     .navigation-menu__item:nth-child(n+6) {
  38.         display: none;
  39.     }
  40.  
  41.     .navigation-menu__item.navigation-menu__item--dropdown {
  42.         display: block;
  43.     }
  44. }
  45.  
  46. @media screen and (min-device-width: 1361px) {
  47.     .navigation-menu__item--dropdown {
  48.         display: none;
  49.     }
  50. }
  51.  
  52. /*# endregion Navigation Menu */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement