Spaces:
Running
Running
File size: 780 Bytes
c45703e |
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 |
/* OUTPUT */
#html_output, #html_examples {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
#html_output > img {
align-self: center;
height:200px;
border: 2px solid;
border-color: var(--block-border-color);
border-radius: var(--block-radius);
margin:1.5em;
}
/* EXAMPLE */
#html_examples > figure > img {
align-self: center;
height: 100px;
border: 2px solid;
border-color: var(--block-border-color);
border-radius: var(--block-radius);
margin:.7em;
}
#html_examples > figure {
transition-duration: 0.2s;
}
#html_examples > figure:hover{
transform: scale(1.2);
}
#html_examples > figure > figcaption {
text-align: center;
}
#preset_examples {
display: none;
} |