|
|
@@ -294,7 +294,7 @@ body {
|
|
|
}
|
|
|
#details-right {
|
|
|
min-width: 220px;
|
|
|
- height: 420px;
|
|
|
+ height: 480px;
|
|
|
margin: auto;
|
|
|
overflow: hidden;
|
|
|
text-align: center;
|
|
|
@@ -405,4 +405,58 @@ body {
|
|
|
box-shadow:0px 0px 1px #ccc;
|
|
|
}
|
|
|
}
|
|
|
+ #remote {
|
|
|
+ margin: 5px auto;
|
|
|
+ #backgroundImg {
|
|
|
+ margin: -50px auto -20px;
|
|
|
+ background-image: url(../img/remote.png);
|
|
|
+ height: 200px;
|
|
|
+ .glyphicon {
|
|
|
+ float: right;
|
|
|
+ margin-top: 75px;
|
|
|
+ color: #fff;
|
|
|
+ font-size: 36px;
|
|
|
+ position:relative;
|
|
|
+ animation-name:arrow;
|
|
|
+ animation-duration:1.5s;
|
|
|
+ animation-timing-function:linear;
|
|
|
+ animation-iteration-count:infinite;
|
|
|
+ animation-direction:normal;
|
|
|
+ /* Safari and Chrome: */
|
|
|
+ -webkit-animation-name:arrow;
|
|
|
+ -webkit-animation-duration:1.5s;
|
|
|
+ -webkit-animation-timing-function:linear;
|
|
|
+ -webkit-animation-iteration-count:infinite;
|
|
|
+ -webkit-animation-direction:normal;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ p {
|
|
|
+ margin-top: 10px;
|
|
|
+ font-size: 12px;
|
|
|
+ }
|
|
|
+ button {
|
|
|
+ height: 25px;
|
|
|
+ width: 70px;
|
|
|
+ padding: 0px;
|
|
|
+ margin: 15px 8px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+@keyframes arrow
|
|
|
+{
|
|
|
+ 0% {opacity:1;left:50px; top:0px;}
|
|
|
+
|
|
|
+ 50% {opacity:0.5;left:-50px; top:0px;}
|
|
|
+
|
|
|
+ 100% {opacity:0;left:-150px; top:0px;}
|
|
|
+}
|
|
|
+
|
|
|
+@-webkit-keyframes arrow /* Safari and Chrome */
|
|
|
+{
|
|
|
+ 0% {opacity:1;left:50px; top:0px;}
|
|
|
+
|
|
|
+ 50% {opacity:0.5;left:-50px; top:0px;}
|
|
|
+
|
|
|
+ 100% {opacity:0;left:-150px; top:0px;}
|
|
|
}
|