|
|
|
@ -1,3 +1,4 @@
|
|
|
|
|
|
|
|
|
|
* {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
@ -31,9 +32,9 @@ h1 {
|
|
|
|
|
|
|
|
|
|
.card {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 245px;
|
|
|
|
|
width: 200px;
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
height: 200px;
|
|
|
|
|
height: 245px;
|
|
|
|
|
border: 2px solid #ccc;
|
|
|
|
|
}
|
|
|
|
|
.card:hover {
|
|
|
|
@ -45,26 +46,36 @@ h1 {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.game-board {
|
|
|
|
|
width: 1000px;
|
|
|
|
|
|
|
|
|
|
width: 850px;
|
|
|
|
|
height: 1000px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
transform: rotate(90deg);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.shape {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 70px;
|
|
|
|
|
height: 200px;
|
|
|
|
|
-webkit-mask-repeat: no-repeat;
|
|
|
|
|
-webkit-mask-position: 15px;
|
|
|
|
|
border: 2px solid white;
|
|
|
|
|
height: 45%;
|
|
|
|
|
width: 25%;
|
|
|
|
|
margin-top: 30%;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.diamond {
|
|
|
|
|
clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
|
|
|
|
|
height: 75%;
|
|
|
|
|
width: 25%;
|
|
|
|
|
margin-top: 10%;
|
|
|
|
|
width: 33%;
|
|
|
|
|
height: 27%;
|
|
|
|
|
margin-top: 45%;
|
|
|
|
|
|
|
|
|
|
transform: rotate(67deg) skewX(45deg) scaleY( 0.70710678118);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.wave {
|
|
|
|
|
/*clip-path: polygon(5% 34%, 5% 20%, 79% 21%, 66% 61%, 98% 60%, 97% 73%, 19% 74%, 37% 34%);/
|
|
|
|
|
/*-moz-transform: scale(0.8) rotate(10deg) translate(15px, -1px) skew(-10deg, 8deg);
|
|
|
|
@ -73,26 +84,14 @@ h1 {
|
|
|
|
|
-ms-transform: scale(0.8) rotate(10deg) translate(15px, -1px) skew(-10deg, 8deg);
|
|
|
|
|
transform: scale(0.8) rotate(10deg) translate(15px, -1px) skew(-10deg, 8deg);*/
|
|
|
|
|
|
|
|
|
|
-webkit-border-radius: 20px 100px 20px 100px;
|
|
|
|
|
-moz-border-radius: 20px 100px 20px 100px;
|
|
|
|
|
/*-webkit-border-radius: 20px 100px 20px 100px;
|
|
|
|
|
-moz-border-radius: 20px 100px 20px 100px;*/
|
|
|
|
|
border-radius: 20px 100px 20px 100px;
|
|
|
|
|
|
|
|
|
|
height: 75%;
|
|
|
|
|
width: 25%;
|
|
|
|
|
margin-top: 10%;
|
|
|
|
|
border: 2px solid white;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.oval {
|
|
|
|
|
border-radius: 40px / 50px;
|
|
|
|
|
height: 75%;
|
|
|
|
|
width: 25%;
|
|
|
|
|
margin-top: 10%;
|
|
|
|
|
border: 2px solid white;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -112,50 +111,51 @@ h1 {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.green.filled {
|
|
|
|
|
.green.solid {
|
|
|
|
|
background: green;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.red.filled {
|
|
|
|
|
.red.solid {
|
|
|
|
|
|
|
|
|
|
background: red;
|
|
|
|
|
}
|
|
|
|
|
.purple.filled {
|
|
|
|
|
.purple.solid {
|
|
|
|
|
background: purple;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.red.empty{
|
|
|
|
|
border: 22px solid red;
|
|
|
|
|
.red.open{
|
|
|
|
|
border: 4px solid red;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.green.empty {
|
|
|
|
|
border: 22px solid green;
|
|
|
|
|
|
|
|
|
|
.green.open {
|
|
|
|
|
border: 4px solid green;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.purple.empty {
|
|
|
|
|
border: 22px solid purple;
|
|
|
|
|
.purple.open {
|
|
|
|
|
border: 4px solid purple;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.red.shaded{
|
|
|
|
|
.red.stripped{
|
|
|
|
|
background: repeating-linear-gradient(-45deg, red, red 5px, white 5px, white 10px);
|
|
|
|
|
border: 4px solid red;
|
|
|
|
|
border: 2px solid red;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.green.shaded {
|
|
|
|
|
.green.stripped {
|
|
|
|
|
background: repeating-linear-gradient(-45deg, green, green 5px, white 5px, white 10px);
|
|
|
|
|
border: 4px solid green;
|
|
|
|
|
border: 2px solid green;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.purple.shaded {
|
|
|
|
|
.purple.stripped {
|
|
|
|
|
background: repeating-linear-gradient(-45deg, purple, purple 5px, white 5px, white 10px);
|
|
|
|
|
border: 4px solid purple;
|
|
|
|
|
border: 2px solid purple;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|