Files
changeblindness/css/style.css
mattbk 3e4a16ef00 Add a transparent div on top of the image
Capture mouse clicks even when images aren't showing.
2015-11-05 15:42:34 -06:00

30 lines
470 B
CSS

body {
padding-top: 40px;
}
#outside {
cursor: pointer;
z-index:10;
position:relative;
}
#rotator {
background: #ffffff;
// 90vh is 90% of viewer height: http://stackoverflow.com/a/16837667/2152245
height:80vh;
width:auto;
//overflow: hidden;
cursor: pointer;
z-index:0;
position: absolute;
left: 0px;
top: 0px;
}
#rotator img {
display: block;
max-height:80vh;
width:auto;
margin: 0;
}