reveal.scss 49,3 ko
Newer Older
Hakim El Hattab's avatar
Hakim El Hattab a validé
.reveal-viewport.reveal-reader::-webkit-scrollbar {
  display: none;
}

.reveal-viewport.reveal-reader .reader-progress {
	position: sticky;
	top: 50%;
	z-index: 20;

	.reader-progress-inner {
		position: absolute;
		width: 8px;
		height: 90vh;
		right: $controlsSpacing;
		top: 0;
		transform: translateY(-50%);
		border-radius: 8px;
		z-index: 10;
		overflow: hidden;
	}

	.reader-progress-playhead {
		position: absolute;
		width: 8px;
		height: 8px;
		top: 0;
		left: 0;
		border-radius: 8px;
		background-color: rgba( 255, 255, 255, 0.7);
		transition: all 0.1s ease;
		z-index: 2;
	}

	.reader-progress-slide {
		position: absolute;
		width: 100%;
		transition: all 0.2s ease;
		background-color: rgba( 0, 0, 0, 0.4 );
		border-radius: 8px;
	}

	.reader-progress-slide:last-child {
		border-bottom-left-radius: 8px;
		border-bottom-right-radius: 8px;
	}


	.reader-progress-slide.active {
		background-color: #000;
		border-radius: 8px;
	}
}

/*********************************************
 * PRINT STYLES
 *********************************************/

@import 'print/pdf.scss';
@import 'print/paper.scss';