search.css 755 B

12345678910111213141516171819202122232425262728
  1. form.search {
  2. text-align: center;
  3. }
  4. form.search input[type="text"] {
  5. width: 700px;
  6. }
  7. p.more {
  8. text-align: center;
  9. margin: 15px;
  10. }
  11. p.more a {
  12. padding: 7px 10px;
  13. border: 1px solid #aaa;
  14. -moz-border-radius: 3px;
  15. -webkit-border-radius: 3px;
  16. border-radius: 3px;
  17. background: #ddd;
  18. background: -moz-linear-gradient(top, #ddd, #bbb);
  19. background: -webkit-linear-gradient(top, #ddd, #bbb);
  20. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dddddd', endColorstr='#bbbbbb');
  21. color: #111;
  22. }
  23. p.more a:hover {
  24. background: #eee;
  25. background: -moz-linear-gradient(top, #eee, #ccc);
  26. background: -webkit-linear-gradient(top, #eee, #ccc);
  27. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#cccccc');
  28. }