searchbar.less 426 B

12345678910111213141516171819202122232425262728
  1. @import '../cfg.less';
  2. #sh-searchbar {
  3. position: fixed;
  4. width: 240px;
  5. left: 0;
  6. bottom: 30px;
  7. background: @bg_left_search;
  8. padding: 3px 10px 5px 10px;
  9. border-top: solid 1px @bg_left * 0.9;
  10. input {
  11. background: transparent;
  12. border: 0;
  13. outline: 0;
  14. color: #fff;
  15. font-size: 13px;
  16. &::placeholder {
  17. color: #333;
  18. }
  19. }
  20. i {
  21. color: @font_color_left;
  22. cursor: pointer;
  23. }
  24. }