Advertisement
arsh999cg

Oxygen Search Form styling with icon

Mar 28th, 2024 (edited)
1,044
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.78 KB | None | 0 0
  1. #_search_form-153-10 input[type='search'] {
  2.      border-radius: 50px;
  3.      border: 1px solid #ccc;
  4.      width: 100%;
  5.      padding: 12px;
  6. }
  7.  #_search_form-153-10 form {
  8.      position: relative;
  9. }
  10.  #_search_form-153-10 form::after {
  11.      content: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='white' %3E%3Cpath d='M21.71 20.29 18 16.61A9 9 0 1 0 16.61 18l3.68 3.68a1 1 0 0 0 1.42 0 1 1 0 0 0 0-1.39M11 18a7 7 0 1 1 7-7 7 7 0 0 1-7 7'/%3E%3C/svg%3E");
  12.      position: absolute;
  13.      background: green;
  14.      padding: 6px;
  15.      width: 32px;
  16.      height: 32px;
  17.      display: inline-block;
  18.      border-radius: 50%;
  19.      color: #000;
  20.      top: 50%;
  21.      right: 12px;
  22.      transform: translateY(-50%);
  23. }
  24.  #_search_form-153-10 input[type='submit'] {
  25.      display: none;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement