|
@@ -1,4 +1,5 @@
|
|
.player-control {
|
|
.player-control {
|
|
|
|
+ min-width: 640px;
|
|
position: relative;
|
|
position: relative;
|
|
margin: auto;
|
|
margin: auto;
|
|
width: 65%;
|
|
width: 65%;
|
|
@@ -9,7 +10,6 @@
|
|
-moz-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
font-family: Arial, sans-serif;
|
|
font-family: Arial, sans-serif;
|
|
padding: 0;
|
|
padding: 0;
|
|
- bottom: 20px;
|
|
|
|
z-index: 2;
|
|
z-index: 2;
|
|
opacity: 1;
|
|
opacity: 1;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
|
|
@@ -311,3 +311,78 @@
|
|
margin: -20px 10px 4px 11px;
|
|
margin: -20px 10px 4px 11px;
|
|
top: 50%
|
|
top: 50%
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+.open-url {
|
|
|
|
+ min-width: 320px;
|
|
|
|
+ width: 40%;
|
|
|
|
+ margin: 20px auto 20px auto;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.open-url > div {
|
|
|
|
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.open-url input {
|
|
|
|
+ color: #fff;
|
|
|
|
+ display: inline-block;
|
|
|
|
+ border-radius: 3px 0 0 3px;
|
|
|
|
+ font-size: 16px;
|
|
|
|
+ padding: 16px 0 16px 16px;
|
|
|
|
+ width: 90%;
|
|
|
|
+ vertical-align: middle;
|
|
|
|
+ border: none;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.open-url input, .open-url .submit-button {
|
|
|
|
+ background-color: #2a2a2a;
|
|
|
|
+ height: 38px;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.open-url input:focus {
|
|
|
|
+ outline:0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.open-url .submit-button {
|
|
|
|
+ display: inline-block;
|
|
|
|
+ vertical-align: middle;
|
|
|
|
+ border-radius: 0 3px 3px 0;
|
|
|
|
+ cursor: pointer;
|
|
|
|
+ margin-left: -4px;
|
|
|
|
+ width: 10%;
|
|
|
|
+ font-size: 32px;
|
|
|
|
+ line-height: 32px;
|
|
|
|
+ color: rgba(255, 132, 0, 1);
|
|
|
|
+ text-align: center;
|
|
|
|
+ border: none;
|
|
|
|
+ outline: none;
|
|
|
|
+ font-weight: lighter;
|
|
|
|
+ -moz-user-select: none;
|
|
|
|
+ -webkit-user-select: none;
|
|
|
|
+ user-select: none;
|
|
|
|
+ font-family: Arial, Helvetica, sans-serif;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.open-url .submit-button:hover {
|
|
|
|
+ color: rgba(255, 132, 0, 0.5);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.display-message {
|
|
|
|
+ opacity: 0;
|
|
|
|
+ position: fixed;
|
|
|
|
+ background: #2a2a2a;
|
|
|
|
+ padding: 16px;
|
|
|
|
+ bottom: 70px;
|
|
|
|
+ left: 24px;
|
|
|
|
+ text-align: center;
|
|
|
|
+ border-radius: 3px;
|
|
|
|
+ box-shadow: 0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
|
|
|
|
+ transition: opacity 200ms,-webkit-transform 300ms cubic-bezier(0.165,0.840,0.440,1.000);
|
|
|
|
+ white-space: nowrap;
|
|
|
|
+ -webkit-transform: translateY(40px);
|
|
|
|
+ transform: translateY(40px);
|
|
|
|
+ color: #fff;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.display-message.show {
|
|
|
|
+ opacity: 1;
|
|
|
|
+}
|