Advertisement
Qellex

Untitled

Dec 13th, 2021
911
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.68 KB | None | 0 0
  1. body, html {
  2.     width: 100%;
  3.     height: 100%;
  4.   }
  5.  
  6.   * {
  7.     margin: 0;
  8.     padding: 0;
  9.     outline: none;
  10.   }
  11.  
  12. body {
  13.     background-color: #d5feff;
  14.     margin: 0px;
  15.     font-family: Trebuchet MS, Helvetica;
  16. }
  17.  
  18. header {
  19.     background-color: #78eced;
  20.     height: 100px;
  21.     border-top: 1px solid #867777;
  22.     border-bottom: 1px solid #867777;
  23.     display: flex;
  24.     position: fixed;
  25.     width: 100%;
  26. }
  27.  
  28. #box_menu {
  29.     min-width: 68px;
  30.     width: 68px;
  31.     margin: auto 10px;
  32. }
  33.  
  34. #box_menu button {
  35.     background-color: Transparent;
  36.     background-repeat:no-repeat;
  37.     overflow: hidden;  
  38.     border: 2px solid black;
  39.     border-radius: 20px;
  40.     width: 70px;
  41.     height: 70px;
  42. }
  43.  
  44. #box_menu button:hover{
  45.     box-shadow: inset 0 1px 5px rgba(0,0,0,0.2);
  46. }
  47.  
  48.  
  49. .box_logo {
  50.     width: 20%;
  51.     min-width: none;
  52.     float: left;
  53. }
  54.  
  55. .logo {
  56. }
  57.  
  58. .find {
  59.     min-width: 50%;
  60.     width: 50%;
  61. }
  62.  
  63. .find input  {
  64.     width: 100%;
  65.     height: 60px;
  66.     background: white;
  67.     border: 1px solid #867777;
  68.     margin: 20px 0px;
  69.     border-radius: 60px;
  70.     padding-left: 20px;
  71. }
  72.  
  73.  
  74. .find input:hover{
  75.     box-shadow: inset 0 1px 5px rgba(0,0,0,0.2);
  76. }
  77.  
  78. .find input:focus{
  79.     box-shadow: inset 0 1px 5px rgba(0,0,0,0.2);
  80. }
  81.  
  82. #icon_panel {
  83.     float: left;
  84.     width: 30%;
  85.     display: flex;
  86.     justify-content: space-evenly;
  87.     min-width: 270px;
  88.     text-align: center;
  89.    
  90. }
  91.  
  92. #icon_panel .box {
  93.     float: left;
  94.     min-width: 90px;
  95.    
  96. }
  97.  
  98. #icon_panel a {
  99.     color: black;
  100.     text-decoration: none;
  101. }
  102. #icon_panel a:hover{
  103.     color: #b0b0b0;
  104. }
  105.  
  106. .icon {
  107.     margin: 10px 10px 0px 10px;
  108.     width: 56px;
  109.     height: 56px;
  110. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement