admin-system-status.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. .nf-box {
  2. background: #fff;
  3. border: 1px solid #ccc;
  4. border-radius: 4px;
  5. display: inline-block;
  6. padding: 20px;
  7. }
  8. #debug-report {
  9. display: none;
  10. }
  11. #debug-report textarea {
  12. height: 200px;
  13. width: 300px;
  14. }
  15. .debug-report {
  16. display: inline-block;
  17. padding: 0;
  18. }
  19. .debug-report h3:first-child {
  20. margin-top: 0;
  21. }
  22. .nf-status-table {
  23. background: #f1f1f1;
  24. border-radius: 4px 4px 0 0;
  25. margin-right: 20px;
  26. max-width: 1150px;
  27. }
  28. .nf-status-table th {
  29. border-color: #ccc;
  30. border-style: solid;
  31. border-width: 1px 1px 0 1px;
  32. border-radius: 4px 4px 0 0;
  33. font-size: 1.4em;
  34. font-weight: normal;
  35. padding: .5em 0;
  36. width: 100%;
  37. }
  38. .nf-status-table thead:first-child th {
  39. border-radius: 4px 4px 0 0;
  40. }
  41. .nf-status-table td {
  42. border-color: #ccc;
  43. border-style: solid;
  44. border-width: 1px 1px 0px 1px;
  45. padding: .5em;
  46. }
  47. .nf-status-table td:first-child {
  48. border-left: 1px solid #ccc;
  49. border-right-width: 0;
  50. min-width: 200px;
  51. }
  52. .nf-status-table tbody:last-child td {
  53. border-bottom-width: 1px;
  54. }
  55. .jBox-content {
  56. font-size: 28px;
  57. padding: 40px !important;
  58. }