20 lines
225 B
CSS
20 lines
225 B
CSS
#video {
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
figure {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
/* Make gifs take all available space */
|
|
.clickable-img img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|