index.less 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. @charset "utf-8";
  2. #course-data {
  3. .top {
  4. height: 60px;
  5. line-height: 60px;
  6. }
  7. .center {
  8. background: #fff;
  9. border-radius: 14px;
  10. padding: 20px;
  11. position: relative;
  12. .data-list {
  13. margin: 0 -20px;
  14. padding-top: 20px;
  15. .data-item {
  16. margin: 0 20px;
  17. }
  18. }
  19. .update-search {
  20. display: inline-block;
  21. position: absolute;
  22. .user-action {
  23. border-bottom: none;
  24. }
  25. top: 10px;
  26. right: 20px;
  27. }
  28. .update-log {
  29. padding-top: 20px;
  30. position: relative;
  31. overflow: hidden;
  32. .left {
  33. float: left;
  34. width: 240px;
  35. background: rgba(251, 251, 251, 1);
  36. border-radius: 4px;
  37. border: 1px solid rgba(229, 229, 229, 1);
  38. padding: 0 20px;
  39. .block {
  40. border-bottom: 1px solid #D8D8D8FF;
  41. padding: 30px 0;
  42. .title {
  43. color: #919FAEFF;
  44. cursor: pointer;
  45. }
  46. .list {
  47. display: none;
  48. padding-top: 20px;
  49. .item {
  50. cursor: pointer;
  51. color: #303139FF;
  52. }
  53. .item.active {
  54. color: #4299FFFF;
  55. }
  56. }
  57. .list.open {
  58. display: block;
  59. }
  60. }
  61. .block:last-child {
  62. border-bottom: none;
  63. }
  64. }
  65. .right {
  66. padding-left: 260px;
  67. .user-table {
  68. font-size: 12px;
  69. }
  70. .item {
  71. margin-bottom: 20px;
  72. }
  73. }
  74. }
  75. }
  76. }