syExtCss.css 793 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. .table {
  2. border-collapse: collapse;
  3. border-spacing: 0;
  4. }
  5. .table th,.table td {
  6. border: 1px solid #8CACBB;
  7. padding: 0.3em 0.7em;
  8. text-align: left;
  9. }
  10. .table th {
  11. background: #F8F8F8;
  12. text-align: center;
  13. }
  14. .table thead th {
  15. text-align: center;
  16. }
  17. .table tbody th {
  18. text-align: right;
  19. }
  20. .table tr:hover {
  21. background-color: #f6fafd;
  22. }
  23. .table td:hover {
  24. background-color: #f9feff;
  25. }
  26. .form th {
  27. text-align: right;
  28. }
  29. .form th,.form td {
  30. padding: 0.1em 0.3em;
  31. border: 1px solid #D1D7DC;
  32. }
  33. .form input,.form select,.form textarea {
  34. width: 150px;
  35. }
  36. .form input[type='checkbox'],.form input[type='radio'] {
  37. width: 20px;
  38. }
  39. fieldset {
  40. border: 1px dotted #D1D7DC;
  41. }
  42. legend {
  43. border: 1px dotted #D1D7DC;
  44. font-size: small;
  45. }