2015-06-18 13:06:13 +00:00
|
|
|
//@import "style";
|
|
|
|
@import "backbone.modal";
|
|
|
|
@import "backbone.modal.theme";
|
2015-06-27 11:23:05 +00:00
|
|
|
@import "cards";
|
2015-06-18 13:06:13 +00:00
|
|
|
|
2015-06-10 14:25:27 +00:00
|
|
|
$height: 600px;
|
|
|
|
$game-height: 800px;
|
|
|
|
|
|
|
|
.board {
|
|
|
|
height: $game-height;
|
|
|
|
border: 1px solid black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.battleside {
|
|
|
|
width: 100%;
|
|
|
|
height: $height/2;
|
|
|
|
border: 1px solid black;
|
|
|
|
}
|
|
|
|
|
2015-06-25 19:34:51 +00:00
|
|
|
.large-field-counter {
|
|
|
|
line-height: 20px;
|
|
|
|
border: 1px solid black;
|
|
|
|
border-radius: 30px;
|
|
|
|
height: 40px;
|
|
|
|
padding: 10px;
|
|
|
|
margin-top: 33px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2015-06-10 14:25:27 +00:00
|
|
|
.field {
|
2015-06-21 14:50:50 +00:00
|
|
|
//width: 100%;
|
2015-06-10 14:25:27 +00:00
|
|
|
height: 100px;
|
2015-06-20 11:08:11 +00:00
|
|
|
border: 1px solid black;/*
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
overflow: visible;
|
|
|
|
}*/
|
2015-06-19 15:15:26 +00:00
|
|
|
|
2015-06-20 11:08:11 +00:00
|
|
|
.card:first-child {
|
|
|
|
margin-left: 0 !important;
|
|
|
|
}
|
2015-06-19 15:15:26 +00:00
|
|
|
&.active {
|
|
|
|
box-shadow: 0px 0px 15px #ffbb0b;
|
|
|
|
|
|
|
|
}
|
2015-06-10 14:25:27 +00:00
|
|
|
}
|
|
|
|
|
2015-06-21 14:50:50 +00:00
|
|
|
.field-horn {/*
|
|
|
|
border: 1px solid green;*/
|
|
|
|
/*clear: both;*/
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-06-10 14:25:27 +00:00
|
|
|
.field:hover, .field-single:hover {
|
|
|
|
box-shadow: 0px 0px 10px #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.field-hand {
|
|
|
|
margin-top: 20px;
|
|
|
|
.card {
|
2015-06-20 11:08:11 +00:00
|
|
|
margin-left: -31px;
|
|
|
|
&:first-child {
|
|
|
|
margin-left: 0 !important;
|
|
|
|
}
|
2015-06-10 14:25:27 +00:00
|
|
|
&:hover {
|
|
|
|
position: relative;
|
|
|
|
z-index: 10;
|
|
|
|
transform: scale(1.25,1.25);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-14 18:50:53 +00:00
|
|
|
.passing {/*
|
|
|
|
display: none;*/
|
2015-06-10 14:25:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.field-single {
|
2015-06-20 11:08:11 +00:00
|
|
|
border: 1px solid black;/*
|
|
|
|
width: 85px;*/
|
|
|
|
/*margin: 5px;*/
|
|
|
|
height: 98px;
|
2015-06-10 14:25:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.left-side {
|
|
|
|
//height: $game-height;
|
|
|
|
}
|
|
|
|
|
|
|
|
.game-info {
|
|
|
|
height: $game-height/2 - 100px;
|
|
|
|
width: 100%;
|
|
|
|
border: 1px solid black;
|
2015-06-14 14:01:25 +00:00
|
|
|
background: rgba(252, 219, 125, 0.51);
|
|
|
|
}
|
|
|
|
|
|
|
|
.removeBackground {
|
|
|
|
background: 0;
|
2015-06-10 14:25:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.mid-line {
|
|
|
|
width: 100%;
|
|
|
|
height: 1px;
|
|
|
|
border: 1px solid black;
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.right-side {
|
|
|
|
border: 1px solid black;
|
|
|
|
height: $game-height/2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card {
|
|
|
|
border: 2px solid black;
|
|
|
|
float: left;
|
|
|
|
margin: 3px;
|
|
|
|
height: 90px;
|
|
|
|
overflow: hidden;
|
2015-06-27 11:23:05 +00:00
|
|
|
/*img {
|
2015-06-10 14:25:27 +00:00
|
|
|
height: 120px;
|
2015-06-27 11:23:05 +00:00
|
|
|
}*/
|
|
|
|
|
|
|
|
i {
|
|
|
|
display: block;
|
|
|
|
transform: scale(1);
|
2015-06-10 14:25:27 +00:00
|
|
|
}
|
2015-06-22 18:19:06 +00:00
|
|
|
|
|
|
|
/*.card-attr-power {
|
|
|
|
margin-top: 0px;
|
|
|
|
margin-left: 0px;
|
|
|
|
height: 25px;
|
|
|
|
width: 25px;
|
|
|
|
text-align: center;
|
|
|
|
line-height: 25px;
|
|
|
|
font-size: 20px;
|
|
|
|
color: black;
|
|
|
|
}*/
|
|
|
|
.card-attr-positive {
|
2015-06-14 18:50:53 +00:00
|
|
|
color: #00b000;
|
2015-06-22 18:19:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
color: #ff2d00;
|
2015-06-14 18:50:53 +00:00
|
|
|
font-weight: bold;
|
2015-06-21 14:50:50 +00:00
|
|
|
font-size: 20px;
|
2015-06-14 18:50:53 +00:00
|
|
|
position: absolute;
|
2015-06-22 18:19:06 +00:00
|
|
|
text-shadow: 1px 1px 0px #101010;
|
2015-06-21 14:50:50 +00:00
|
|
|
margin-top: 62px;
|
|
|
|
margin-left: 0px;
|
2015-06-14 18:50:53 +00:00
|
|
|
cursor: default;
|
|
|
|
}
|
2015-06-18 13:06:13 +00:00
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.activeCard {
|
|
|
|
position: relative;
|
|
|
|
z-index: 11;
|
|
|
|
transform: scale(1.5,1.5) !important;
|
|
|
|
}
|
2015-06-10 14:25:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.card-preview {
|
2015-06-25 19:34:51 +00:00
|
|
|
div {
|
|
|
|
position: fixed;
|
|
|
|
//left:0;
|
|
|
|
z-index: 110;
|
2015-06-27 11:23:05 +00:00
|
|
|
//height: 100px !important;
|
|
|
|
i {
|
|
|
|
display: block;
|
|
|
|
}
|
2015-06-25 19:34:51 +00:00
|
|
|
.preview-description {
|
|
|
|
width: 238px;
|
|
|
|
min-height: 200px;
|
|
|
|
background: rgba(16, 16, 16, 0.57);
|
|
|
|
color: #ffffff;
|
|
|
|
|
|
|
|
p {
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-10 14:25:27 +00:00
|
|
|
}
|
|
|
|
|
2015-06-27 11:23:05 +00:00
|
|
|
.gwent-lives{
|
|
|
|
i {
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
height: 40px;
|
|
|
|
width: 40px;
|
|
|
|
background: url("../../assets/ruby-grey.png");
|
|
|
|
&.ruby {
|
|
|
|
background: url("../../assets/ruby.png");
|
|
|
|
}
|
2015-06-10 14:25:27 +00:00
|
|
|
}
|
2015-06-13 07:58:55 +00:00
|
|
|
|
2015-06-27 11:23:05 +00:00
|
|
|
.field {
|
|
|
|
&.field-frost {
|
|
|
|
background: #ffffff; /* Old browsers */
|
|
|
|
background: -moz-linear-gradient(top, #ffffff 0%, #2365ff 100%); /* FF3.6+ */
|
|
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#2365ff)); /* Chrome,Safari4+ */
|
|
|
|
background: -webkit-linear-gradient(top, #ffffff 0%,#2365ff 100%); /* Chrome10+,Safari5.1+ */
|
|
|
|
background: -o-linear-gradient(top, #ffffff 0%,#2365ff 100%); /* Opera 11.10+ */
|
|
|
|
background: -ms-linear-gradient(top, #ffffff 0%,#2365ff 100%); /* IE10+ */
|
|
|
|
background: linear-gradient(to bottom, #ffffff 0%,#2365ff 100%); /* W3C */
|
|
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#2365ff',GradientType=0 ); /* IE6-9 */
|
2015-06-25 17:30:56 +00:00
|
|
|
|
2015-06-27 11:23:05 +00:00
|
|
|
}
|
|
|
|
&.field-fog {
|
|
|
|
background: #ffffff; /* Old browsers */
|
|
|
|
background: -moz-linear-gradient(top, #ffffff 0%, #232f30 100%); /* FF3.6+ */
|
|
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#232f30)); /* Chrome,Safari4+ */
|
|
|
|
background: -webkit-linear-gradient(top, #ffffff 0%,#232f30 100%); /* Chrome10+,Safari5.1+ */
|
|
|
|
background: -o-linear-gradient(top, #ffffff 0%,#232f30 100%); /* Opera 11.10+ */
|
|
|
|
background: -ms-linear-gradient(top, #ffffff 0%,#232f30 100%); /* IE10+ */
|
|
|
|
background: linear-gradient(to bottom, #ffffff 0%,#232f30 100%); /* W3C */
|
|
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#232f30',GradientType=0 ); /* IE6-9 */
|
|
|
|
}
|
|
|
|
&.field-rain {
|
|
|
|
background: #ffffff; /* Old browsers */
|
|
|
|
background: -moz-linear-gradient(top, #ffffff 0%, #9b9b9b 100%); /* FF3.6+ */
|
|
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#9b9b9b)); /* Chrome,Safari4+ */
|
|
|
|
background: -webkit-linear-gradient(top, #ffffff 0%,#9b9b9b 100%); /* Chrome10+,Safari5.1+ */
|
|
|
|
background: -o-linear-gradient(top, #ffffff 0%,#9b9b9b 100%); /* Opera 11.10+ */
|
|
|
|
background: -ms-linear-gradient(top, #ffffff 0%,#9b9b9b 100%); /* IE10+ */
|
|
|
|
background: linear-gradient(to bottom, #ffffff 0%,#9b9b9b 100%); /* W3C */
|
|
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#9b9b9b',GradientType=0 ); /* IE6-9 */
|
2015-06-25 17:30:56 +00:00
|
|
|
|
2015-06-27 11:23:05 +00:00
|
|
|
}
|
2015-06-25 17:30:56 +00:00
|
|
|
}
|
2015-06-26 12:40:19 +00:00
|
|
|
|
2015-06-27 11:23:05 +00:00
|
|
|
.playcard-banner {
|
|
|
|
position: fixed;
|
|
|
|
border: 1px solid red;
|
|
|
|
background: orangered;
|
|
|
|
width: 100%;
|
|
|
|
height: 250px;
|
|
|
|
left: 0;
|
|
|
|
text-align: center;
|
|
|
|
top: 200px;
|
|
|
|
z-index: 200;
|
|
|
|
.card {
|
|
|
|
position: relative;
|
|
|
|
left: 50%;
|
|
|
|
top: 30%;
|
|
|
|
}
|
2015-06-26 12:40:19 +00:00
|
|
|
}
|
|
|
|
}
|