diff options
author | Ajay Ramachandran <[email protected]> | 2019-08-19 17:39:22 -0400 |
---|---|---|
committer | Ajay Ramachandran <[email protected]> | 2019-08-19 17:39:22 -0400 |
commit | e5e250ff366f1efccb8e08045e67b5ea1b9fcc10 (patch) | |
tree | d7d2db6941908c0b26765adc1fb2b7fbe388ced7 /content.css | |
parent | 6fe94a70a740fd89e75e0b6d02e99f99fb5bfe97 (diff) | |
download | SponsorBlock-e5e250ff366f1efccb8e08045e67b5ea1b9fcc10.tar.gz SponsorBlock-e5e250ff366f1efccb8e08045e67b5ea1b9fcc10.zip |
Added fade out animation
Diffstat (limited to 'content.css')
-rw-r--r-- | content.css | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/content.css b/content.css index 05fee444..590dc05a 100644 --- a/content.css +++ b/content.css @@ -58,6 +58,11 @@ to { opacity: 1; } } +@keyframes fadeOut { + from { opacity: 1; } + to { opacity: 0; } +} + .sponsorBlockSpacer { background-color: rgb(100, 100, 100); border-color: rgb(100, 100, 100); @@ -82,6 +87,10 @@ padding-right: 5px; } +.sponsorBlockFadeOutAnimiation { + animation: fadeOut 3s; +} + .sponsorSkipNoticeTimeLeft { color: #eeeeee; |