Advertisement
Guest User

Untitled

a guest
Nov 20th, 2015
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.01 KB | None | 0 0
  1. #navigation-wrapper ul.menu {
  2.     width: 100%;
  3. }
  4. #navigation-wrapper ul.menu li.search-form{
  5.     float: right;
  6. }
  7. #navigation-wrapper ul.menu li.search-form:hover{
  8.     background:none;
  9. }
  10. #navigation-wrapper ul.menu li.search-form form{
  11.     color: #FFF;
  12.     font-family: Lato, sans-serif;
  13.     text-transform: uppercase;
  14.     font-size: 11px;
  15.     font-weight: 700;
  16.     letter-spacing: 1px;
  17.     height: 56px;
  18.     display: block;
  19.     line-height: 56px;
  20.     background: none;
  21. }
  22. #navigation-wrapper ul.menu li.search-form form input[type="text"]{
  23.     padding-right: 30px;   
  24. }
  25. #navigation-wrapper ul.menu li.search-form .form-group{
  26.     position:relative;
  27. }
  28. #navigation-wrapper ul.menu li.search-form .form-group span{
  29.     position:absolute;
  30.     right: 6px;
  31.     top: 23px;
  32.     color: #4C5358;
  33.     font-size: 15px;
  34. }
  35.  
  36. @media (max-width: 767px){
  37.     #navigation-wrapper ul.menu li.search-form{
  38.         float: none;
  39.         margin: 0;
  40.         padding: 13px;
  41.     }  
  42.     #navigation-wrapper ul.menu li.search-form .form-group span{
  43.         display:none;
  44.     }
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement