portal html css js resource

style.css 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. img{
  2. border:0px;
  3. }
  4. li{
  5. list-style:none;
  6. }
  7. a{
  8. text-decoration:none;
  9. outline:none;
  10. }
  11. input{
  12. outline:none;
  13. }
  14. /*以下为新加select样式*/
  15. .divselect{width:175px; float:left; position:relative;}
  16. .input_select{
  17. width:173px; height:26px; border-radius:5px; border:1px #f99550 solid; box-shadow:0 0 1px #f99550 inset; background:url(../images/downselect.png) no-repeat 150px center; float:left;font-size:14px;line-height:26px; color:#000; padding-left:15px;
  18. cursor:pointer;
  19. display: block;
  20. font-style:normal;
  21. }
  22. .divselect ul{
  23. width:170px;
  24. border:1px #f99550 solid; box-shadow:0 0 1px #f99550 inset;
  25. background-color:#ffffff;
  26. display:none;
  27. color: #999;
  28. font:font-size:14px;line-height:26px;
  29. position:absolute;
  30. z-index:10000;
  31. top:22px;
  32. }
  33. .divselect ul li{height:24px; line-height:24px;}
  34. .divselect ul li a{
  35. display:block;
  36. height:24px;
  37. color:#333333;
  38. text-decoration:none;
  39. padding-left:15px;
  40. padding-right:15px;
  41. color: #a1a1a1;
  42. font-size:14px;line-height:26px;
  43. }
  44. .divselect ul li a:hover{background-color:#f9f9f9;}