2017-09-18 12:04:55 -04:00
|
|
|
body {
|
|
|
|
margin: 0 0 0 0;
|
|
|
|
}
|
2017-09-20 22:35:31 -04:00
|
|
|
|
2017-09-18 12:04:55 -04:00
|
|
|
.card {
|
2017-09-20 22:35:31 -04:00
|
|
|
display: inline-block;
|
2017-09-18 12:04:55 -04:00
|
|
|
border-radius: 5px;
|
|
|
|
width: 142px;
|
|
|
|
height: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#card-container {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#hand {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0px;
|
|
|
|
width: 100%;
|
|
|
|
height: 20%;
|
|
|
|
background-color: #ccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-pile {
|
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
|
|
|
color: #eee;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2017-09-20 22:31:06 -04:00
|
|
|
text-align: center;
|
2017-09-18 12:04:55 -04:00
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.deck {
|
|
|
|
background-color: blue;
|
|
|
|
}
|
|
|
|
|
|
|
|
.discard {
|
|
|
|
background-color: red;
|
|
|
|
}
|
2017-09-20 22:35:31 -04:00
|
|
|
|
|
|
|
#shade {
|
|
|
|
position: fixed;
|
|
|
|
z-index: 100;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: grey;
|
|
|
|
opacity: 0.5;
|
|
|
|
filter: alpha(opacity=50);
|
|
|
|
}
|
|
|
|
|
|
|
|
#modal-content {
|
|
|
|
padding: 5px;
|
|
|
|
border-radius: 5px;
|
|
|
|
position: fixed;
|
|
|
|
z-index: 101;
|
|
|
|
top: 5%;
|
|
|
|
left: 5%;
|
|
|
|
width: 90%;
|
|
|
|
background-color: white;
|
|
|
|
overflow-y: auto;
|
|
|
|
max-height: 90%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#modal-content .card {
|
|
|
|
margin: 2px;
|
|
|
|
}
|