control.css 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. #control header{
  2. height:123px;
  3. padding-top: 1px;
  4. }
  5. #control header nav{
  6. float:left;
  7. width:50%;
  8. padding-left:80px;
  9. height: inherit;
  10. }
  11. #control header nav a:nth-child(1){
  12. color: #2d3037;
  13. background: url(../img/Logo.svg) 47% 49% no-repeat;
  14. margin-right:8%;
  15. width:65px;
  16. }
  17. #control header nav a:nth-child(1):hover{color: #2d3037;}
  18. #control header nav a{
  19. display: inline-block;
  20. height: 123px;
  21. width: 130px;
  22. text-align: center;
  23. line-height: 123px;
  24. font-weight: 500;
  25. color: #A8AAB1;
  26. font-size: 16px;
  27. font-family: HelveticaNeue-Medium;
  28. }
  29. #control header nav a:hover{
  30. color:#161A21;
  31. font-weight: 600;
  32. text-decoration:none;
  33. }
  34. #control header .controlBtn{
  35. float: right;
  36. width: 50%;
  37. text-align: right;
  38. height: inherit;
  39. padding-top: 45px;
  40. padding-right: 94px;
  41. }
  42. #control header .controlBtn span{
  43. display: inline-block;
  44. width: 32px;
  45. height: 32px;
  46. margin-right: 46px;
  47. }
  48. #control .search{background:url("../img/search_icon.svg") no-repeat;
  49. }
  50. #control .search:hover{background:url("../img/search_icon_hover.svg") no-repeat;
  51. }
  52. #control .avatar{background:url("../img/avatar_default.svg") no-repeat;
  53. }
  54. #control .avatar:hover{background:url("../img/avatar_default_hover.svg") no-repeat;
  55. }
  56. #control .cart{background:url("../img/cart_icon.svg") no-repeat;
  57. }
  58. #control .cart:hover{background:url("../img/cart_icon_hover.svg") no-repeat;
  59. }
  60. #control .menu{background:url("../img/menu_icon.svg") no-repeat;
  61. }
  62. #control .menu:hover{background:url("../img/menu_icon_hover.svg") no-repeat;
  63. }
  64. #control header .hr{
  65. float: left;
  66. width: 88%;
  67. height: 1.5px;
  68. background: #F8F8F8;
  69. margin: 0 6%;
  70. }