system.css 506 B

1234567891011121314151617181920212223242526272829
  1. .content {
  2. width: 600px;
  3. margin: 40px auto;
  4. font-family: "Segoe UI", "Tahoma", sans-serif;
  5. font-size: 14px;
  6. }
  7. .system-table {
  8. width: 500px;
  9. border-collapse: collapse;
  10. }
  11. .system-table td:first-child {
  12. text-align: right;
  13. font-weight: bold;
  14. color: #555;
  15. width: 200px;
  16. font-size: 16px;
  17. }
  18. input[disabled] {
  19. width: 100%;
  20. padding: 2px;
  21. background-color: #f0f0f0;
  22. color: #333;
  23. border: 1px solid #ccc;
  24. border-radius: 4px;
  25. font-size: 16px;
  26. }