Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. .navmenu {
  2. background: rgb(7, 7, 7) none repeat scroll 0% 0%;
  3. cursor: context-menu;
  4. list-style: none;
  5. padding: 0px;
  6. text-align: center;
  7. border-bottom: 1px solid #141414;
  8. border-radius: 0px;
  9. -moz-border-radius: 0px;
  10. -webkit-border-radius: 0px;
  11. transition: all 0.5s;
  12. margin: 195px auto 0;
  13. max-width: 1300px;
  14. }
  15.  
  16. .navmenu li{
  17. height:100%;
  18. text-align:center;
  19. padding:0px 0px;
  20. margin:0px;
  21. display:inline-block;
  22. width:14%;
  23. background: #070707;
  24. transition:all 0.5s
  25. }
  26.  
  27. .navmenu li div{
  28. margin:0px;
  29. padding:20px 0px;
  30. cursor:pointer;
  31. background: #070707;
  32. width:94%;
  33. color: #2C4AD6;
  34. font-size:12px;
  35. font-weight:bold;
  36. border-bottom: 2px solid rgba(0,0,0,0);
  37. transition:all 0.2s;
  38. }
  39.  
  40. .navmenu li div i{
  41. font-size:24px;
  42. line-height:15px;
  43. vertical-align:middle !important;
  44. }
  45.  
  46. .navmenu li div:hover>i{
  47. color:#2C4AD6
  48. }
  49.  
  50. .navmenu li div:hover{
  51. border-bottom:2px solid #2C4AD6;
  52. background:#0B0B0B;
  53. background-position:center;
  54. width:100%;
  55. }
  56.  
  57. .navmenu a{
  58. text-decoration:none;
  59. color:inherit;
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement