I have developed a custom lightbox for watching Youtube videos that is fully functional. However, the design aspect leaves much to be desired. Please take a look at it.
Despite my best efforts to improve it, the outcome is still not satisfactory. Here is a link to a JSbin where you can see the lightbox in action: http://jsbin.com/UDIGeveg/1/edit
I have included my CSS below. I am struggling with making the 'close' X button appear properly within the dialog box. Any suggestions on how to achieve this?
.close {
background: #606061;
color: #FFFFFF;
line-height: 25px;
position: absolute;
right: -12px;
text-align: center;
top: -10px;
width: 24px;
text-decoration: none;
font-weight: bold;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
-moz-box-shadow: 1px 1px 3px #000;
-webkit-box-shadow: 1px 1px 3px #000;
box-shadow: 1px 1px 3px #000;
}
.close:hover { background: #00d9ff; }