This commit is contained in:
Adriaan Wormgoor 2013-10-28 19:36:12 +01:00
parent ef7a147a5b
commit 68bcd4834a
1 changed files with 11 additions and 3 deletions

View File

@ -17,7 +17,6 @@ img {
/* http://stackoverflow.com/questions/5348092/prevent-default-press-but-not-default-drag-in-ios-mobilesafari */
.btn {
background-repeat: no-repeat;
/* -webkit-user-select: none;*/
cursor: pointer;
}
#landscape {
@ -33,8 +32,17 @@ img {
// z-index: 5;
overflow: hidden;
margin: 0 auto;
outline: 2px solid #5e8c71;
box-shadow: 0 0 8px rgba(8, 8, 8, 0.25);
// box-sizing: border-box;
// border: 2px solid #5e8c71;
// -moz-box-sizing:border-box;
// -webkit-box-sizing:border-box;// border-width: 0 2px 2px 2px;
// solution from: http://stackoverflow.com/questions/14085822/css-firefox-box-shadow-and-outline
box-shadow: 0 0 0 2px #5e8c71,
0 0 8px 4px rgba(8, 8, 8, 0.25);
// outline: 2px solid #5e8c71;
}
#portrait {
display: none;