slothwit17

club90 css

Jul 13th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.29 KB | None | 0 0
  1. * {
  2.     margin: 0;
  3.     padding: 0;
  4.     outline: 0;
  5.     box-sizing: border-box;
  6.   }
  7.  
  8.   .menu-area li a {
  9.     text-decoration: none;
  10.   }
  11.  
  12.   .menu-area li {
  13.     list-style-type: none;
  14.  
  15.   }
  16.   .menu-area{
  17.     width: 80%;
  18.    
  19.   }
  20.  
  21.   .main-area{
  22.     padding-top: 15px;
  23.     width: 100%;
  24.     height: 200px;
  25.   }
  26.  
  27.   nav {
  28.     position: relative;
  29.     width: calc(100% - 60px);
  30.     margin: 0 auto;
  31.     padding: 10px 0;
  32.     background: #333;
  33.     z-index: 1;
  34.     text-align: right;
  35.     padding-right: 2%;
  36.     border-radius: 10px;
  37.   }
  38.  
  39.   .logo {
  40.     width: 20%;
  41.     height: 200px;
  42.     float: left;
  43.     text-transform: uppercase;
  44.     color: #ffffff;
  45.     font-size: 28px;
  46.     text-align: left;
  47.     padding-left: 2%;
  48.     margin-top: .3%
  49.   }
  50.  
  51.   .menu-area li {
  52.     display: inline-block;
  53.   }
  54.  
  55.   .menu-area a {
  56.     color: #ffffff;
  57.     font-family: arial;
  58.     font-weight: 300;
  59.     letter-spacing: 1px;
  60.     text-transform: uppercase;
  61.     display: block;
  62.     padding: 0 25px;
  63.     font-size: 14px;
  64.     line-height: 40px;
  65.     position: relative;
  66.     z-index: 1;
  67.   }
  68.   .menu-area a:hover {
  69.     background: tomato;
  70.     color: #fff;
  71.   }
  72.  
  73.   .search input{
  74.       position: relative;
  75.       width: 40%;
  76.       left: 28%;
  77.       top: 48%;
  78.       border-radius: 10%;
  79.       border: 2px solid black;
  80.       box-shadow: 1px 2px .2px gray ;
  81.  
  82.   }
Add Comment
Please, Sign In to add comment