12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- @charset "utf-8";
- #course-note {
- .top {
- height: 60px;
- line-height: 60px;
- }
- .center {
- background: #fff;
- border-radius: 14px;
- padding: 20px;
- .user-action {
- border-top: 1px solid #eee;
- }
- .list {
- padding-left: 15px;
- .note-item {
- .checkbox-item {
- vertical-align: middle;
- }
- }
- }
- }
- }
- .g-modal.note-detail-modal {
- .ant-modal-body {
- .detail {
- height: 600px;
- overflow-y: auto;
- }
- .prev {
- position: absolute;
- left: -100px;
- top: 300px;
- color: #fff;
- font-size: 37px;
- cursor: pointer;
- }
- .next {
- position: absolute;
- right: -100px;
- top: 300px;
- color: #fff;
- font-size: 37px;
- cursor: pointer;
- }
- }
- }
|