You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PrintCourseStatistic.css 1.2 KiB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. @media print {
  2. .noprint {
  3. display: none !important;
  4. }
  5. }
  6. body{
  7. padding:10px;
  8. overflow:auto;
  9. }
  10. table {
  11. text-align: center;
  12. width: 100%;
  13. font-size: 14px;
  14. color: #464646;
  15. background: #fff;
  16. border: 1px solid #d0d9e8;
  17. border-spacing: 0px;
  18. border-collapse: collapse;
  19. }
  20. table td,
  21. table th {
  22. padding: 14px 6px;
  23. border: 1px solid #d0d9e8;
  24. }
  25. table th {
  26. color: #000;
  27. font-weight: normal;
  28. }
  29. .btnBox {
  30. display: flex;
  31. justify-content: center;
  32. margin-top: 20px;
  33. }
  34. .btnBox #print {
  35. background-color: #d05051;
  36. border: none;
  37. color: #fff;
  38. width: 80px;
  39. line-height: 32px;
  40. letter-spacing: 4px;
  41. cursor: pointer;
  42. }
  43. .tableTop {
  44. color: #464646;
  45. font-size: 14px;
  46. margin-bottom: 6px;
  47. text-align:center;
  48. }
  49. .makeTime {
  50. text-align: right;
  51. color: #666;
  52. font-size: 14px;
  53. line-height: 28px;
  54. }
  55. .tableBottom ul {
  56. display: flex;
  57. flex-wrap: nowrap;
  58. list-style-type: none;
  59. padding-left: 0;
  60. color: #464646;
  61. font-size: 14px;
  62. }
  63. .tableBottom ul li {
  64. flex: 1;
  65. }