Advertisement
Guest User

Untitled

a guest
Nov 20th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Page Title</title>
  5. <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
  6. <style>
  7. body{
  8. margin:0;
  9. padding:0;
  10. background: #0094ff;
  11. }
  12. a{
  13. text-decoration: none;
  14. }
  15. .search-box{
  16. position: absolute;
  17. top: 50%;
  18. left: 50%;
  19. transform: translate(-50%,-50%);
  20. background: #333;
  21. height: 40px;
  22. border-radius: 40px;
  23. padding: 10px;
  24. }
  25. .search-box:hover > .search-txt{
  26. width: 240px;
  27. padding: 0 6px;
  28. }
  29. .search-box:hover > .search-btn{
  30. background: white;
  31. }
  32. .search-btn{
  33. color: #0094ff;
  34. float: right;
  35. width: 40px;
  36. height: 40px;
  37. border-radius: 50%;
  38. background: #333;
  39. display: flex;
  40. justify-content: center;
  41. align-items: center;
  42. transition: 0.4s;
  43. }
  44. .search-txt{
  45. border: none;
  46. background: none;
  47. outline: none;
  48. float: left;
  49. padding: 0;
  50. color: white;
  51. font-size: 16px;
  52. transition: 0.4s;
  53. line-height: 40px;
  54. width: 0px;
  55. }
  56. </style>
  57. </head>
  58. <body>
  59.  
  60. <div class="search-box">
  61. <input class="search-txt" type="text" name="" placeholder="Pretraga">
  62. <a class="search-btn" href="#">
  63. <i class="fas fa-search"></i>
  64. </a>
  65. </div>
  66.  
  67. </body>
  68. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement