diff options
author | Ajay Ramachandran <[email protected]> | 2019-07-21 18:19:56 -0400 |
---|---|---|
committer | Ajay Ramachandran <[email protected]> | 2019-07-21 18:19:56 -0400 |
commit | 2d00cfffdfac4a5e30fcef55c576ceec650de28a (patch) | |
tree | b6cc66fcd876b69282c2b44afc7d7f3969b43042 /content.css | |
parent | a7a4642920e046a21a9ce101d6064b1c430fff95 (diff) | |
download | SponsorBlock-2d00cfffdfac4a5e30fcef55c576ceec650de28a.tar.gz SponsorBlock-2d00cfffdfac4a5e30fcef55c576ceec650de28a.zip |
Added submit button on the video player.
Diffstat (limited to 'content.css')
-rw-r--r-- | content.css | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/content.css b/content.css index 6ff83351..6126768a 100644 --- a/content.css +++ b/content.css @@ -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; |