10 lines
206 B
CSS
10 lines
206 B
CSS
/* Fullscreen images in cover of contain mode */
|
|
.reveal img.fullscreen {
|
|
position: absolute;
|
|
top: 50%;
|
|
bottom: auto;
|
|
left: 50%;
|
|
right: auto;
|
|
transform: translate( -50%, -50% ) scale( 100% );
|
|
}
|