MyShaarli/plugins/qrcode/qrcode.css
ArthurHoaro 28a4fc546f Fixes QRCode style
* fixes a regression misplacing QRCode popup.
 * adds a 'show' class in JS to handle CSS transition.
2015-12-21 14:01:52 +01:00

24 lines
412 B
CSS
Executable file

.linkqrcode {
display: inline;
position: relative;
}
#permalinkQrcode {
position: absolute;
z-index: 200;
padding: 20px;
width: 220px;
height: 220px;
background-color: #ffffff;
border: 1px solid black;
top: -110px;
left: -110px;
text-align: center;
font-size: 8pt;
box-shadow: 2px 2px 20px 2px #333333;
}
#permalinkQrcode img {
margin-bottom: 5px;
}