Added submit button on the video player.

This commit is contained in:
Ajay Ramachandran
2019-07-21 18:19:56 -04:00
parent a7a4642920
commit 2d00cfffdf
6 changed files with 137 additions and 16 deletions

View File

@@ -1,3 +1,11 @@
.playerButton {
height: 60%;
top: 0;
bottom: 0;
display: block;
margin: auto;
}
.sponsorSkipObject {
font-family: 'Source Sans Pro', sans-serif;
}
@@ -84,6 +92,42 @@
filter: brightness(80%);
}
.submitButton {
background-color:#ec1c1c;
-moz-border-radius:28px;
-webkit-border-radius:28px;
border-radius:28px;
border:1px solid #d31919;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-size:14px;
padding:4px 15px;
text-decoration:none;
text-shadow:0px 0px 0px #662727;
margin-top: 5px;
margin-right: 15px;
}
.submitButton:hover {
background-color:#bf2a2a;
}
.submitButton:focus {
outline: none;
background-color:#bf2a2a;
}
.submitButton:active {
position:relative;
top:1px;
}
@keyframes rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.sponsorSkipButton {
background-color:#ec1c1c;
-moz-border-radius:28px;