File size: 1,022 Bytes
01fdb75 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | /* The grid: Four equal columns that floats next to each other */
.tab_column {
float: left;
width: 10%;
padding: 5px;
}
/* Style the images inside the grid */
.tab_column img {
opacity: 0.8;
cursor: pointer;
}
.tab_column img:hover {
opacity: 1;
}
/* Clear floats after the columns */
.tab_row:after {
content: "";
display: table;
clear: both;
}
/* The expanding image container (positioning is needed to position the close button and the text) */
.tab_container {
position: relative;
display: block;
}
/* Expanding image text */
#imgtext {
position: absolute;
bottom: 15px;
left: 15px;
color: white;
font-size: 20px;
}
/* Closable button inside the image */
.tab_closebtn {
position: absolute;
top: 10px;
right: 15px;
color: white;
font-size: 35px;
cursor: pointer;
}
#juxtapose-embed {
width: 100%;
max-width: initial;
}
#juxtapose-embed {
width: 100%;
max-width: initial;
}
#juxtapose-hidden {
display: none;
}
#controls {
text-align: center;
margin-top: 20px;
} |