Advertisement
apl-mhd

simple navigation

Aug 17th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.64 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <link rel="stylesheet" href="css/style.css">
  6. </head>
  7. <body>
  8.  
  9.  
  10. <div class="mainbox">
  11.     <div class="box box1">
  12.  
  13.     </div>
  14.     <div class="box box2">
  15.  
  16.     </div>
  17. </div>
  18.  
  19. <div class="cvlear"></div>
  20.  
  21.     <div class="btn">
  22.         <div class="btngrp">
  23.         <a href="#">Link1</a>
  24.         <a href="#">Link2</a>
  25.         <a href="#">Link3</a>
  26.         <a href="#">Link4</a>
  27.         </div>
  28.  
  29.         <div class="serchclass">
  30.             <form>
  31.                 <input type="search" name="search"  placeholder="type here">
  32.                 <input type="submit" value="Search">
  33.             </form>
  34.  
  35.         </div>
  36.  
  37.     </div>
  38. </body>
  39. </html>
  40.  
  41.  
  42.  
  43. *{
  44.     margin: 0;
  45.     padding: 0;
  46.     list-style: none;
  47.     text-decoration: none;
  48.     font-family: sans-serif;
  49. }
  50.  
  51. .clear{
  52.     clear: both;
  53. }
  54.  
  55. .mainbox{
  56.  
  57.     width: 800px;
  58.     height: auto;
  59.     background: dodgerblue;
  60.     margin-bottom: 200px;
  61.     overflow: hidden;
  62. }
  63.  
  64. .box{
  65.     height: 100px;
  66.     width: 100px;
  67.  
  68. }
  69.  
  70. .box1{
  71.     background: green;
  72.     float: left;
  73. }
  74. .box2{
  75.     background: darkcyan;
  76. float: right;
  77. }
  78.  
  79.  
  80.  
  81. .btn{
  82.     width: 800px;
  83.     background: darkcyan;
  84.     margin: 0 auto;
  85.     overflow: hidden;
  86.     box-sizing: border-box;
  87.  
  88. }
  89.  
  90. .btn .btngrp{
  91.  
  92.     float: left;
  93.  
  94. }
  95.  
  96. .btn a{
  97.  
  98.     display: inline-block;
  99.     padding: 20px 30px;
  100.     color: #fff;
  101.    
  102.  
  103. }
  104. .btn a:hover{
  105.  
  106.     background: dodgerblue;
  107.     transition: 1s;
  108. }
  109.  
  110.  
  111. .serchclass{
  112.     float: right;
  113.     position: relative;
  114.     right: 10px;
  115.     top: 0px;
  116. }
  117.  
  118. input{
  119.  
  120.     padding: 20px;
  121.  
  122. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement