index.less 792 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. @charset "utf-8";
  2. #course-note {
  3. .top {
  4. height: 60px;
  5. line-height: 60px;
  6. }
  7. .center {
  8. background: #fff;
  9. border-radius: 14px;
  10. padding: 20px;
  11. .user-action {
  12. border-top: 1px solid #eee;
  13. }
  14. .list {
  15. padding-left: 15px;
  16. .note-item {
  17. .checkbox-item {
  18. vertical-align: middle;
  19. }
  20. }
  21. }
  22. }
  23. }
  24. .g-modal.note-detail-modal {
  25. .ant-modal-body {
  26. .detail {
  27. height: 600px;
  28. overflow-y: auto;
  29. }
  30. .prev {
  31. position: absolute;
  32. left: -100px;
  33. top: 300px;
  34. color: #fff;
  35. font-size: 37px;
  36. cursor: pointer;
  37. }
  38. .next {
  39. position: absolute;
  40. right: -100px;
  41. top: 300px;
  42. color: #fff;
  43. font-size: 37px;
  44. cursor: pointer;
  45. }
  46. }
  47. }