1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- .detail-text {
- display: flex;
- flex-direction: column;
- width: 100%;
- height: calc(100vh - var(--topnav-height) - 54px - 52px);
- overflow: hidden;
- #reader {
- margin: 0 -40px;
- flex: 1;
- width: 100%;
- height: 0;
- :deep(.epub-view) {
- flex: 1;
- }
- }
- .select-menu {
- position: absolute;
- display: flex;
- align-items: center;
- gap: 15px;
- padding: 15px;
- background: var(--el-bg-color);
- border-radius: 5px;
- visibility: hidden;
- white-space: nowrap;
- box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.25);
- &-colors {
- display: flex;
- align-items: center;
- gap: 8px;
- div {
- width: 24px;
- height: 24px;
- border-radius: 50%;
- cursor: pointer;
- }
- }
- &__driver {
- width: 1px;
- height: 28px;
- background: var(--text-color);
- }
- &-toolbar {
- display: flex;
- align-items: center;
- gap: 15px;
- font-size: 18px;
- color: var(--el-color-primary);
- div {
- display: flex;
- align-items: center;
- gap: 5px;
- cursor: pointer;
- }
- }
- }
- &-pagination {
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-top: 28px;
- &__btn {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 110px;
- height: 40px;
- color: var(--el-color-primary);
- font-size: 18px;
- user-select: none;
- background: url("../../images/btn_03.png") no-repeat center / contain;
- cursor: pointer;
- }
- }
- }
|