diff options
| author | Factiven <[email protected]> | 2023-08-09 15:11:53 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-08-09 15:11:53 +0700 |
| commit | bae1f53877c3447d3ba940f823e5a8a097f5b22c (patch) | |
| tree | 98abb195bcad6f3e6c61c76c62fc238f227b0ead /styles/globals.css | |
| parent | Update package-lock.json (diff) | |
| download | moopa-3.9.0.tar.xz moopa-3.9.0.zip | |
Update v3.9.0 - Merged Beta to Main (#41)v3.9.0
* initial commit
* Update_v.3.6.7-beta-v1.2
* Update_v.3.6.7-beta-v1.3
* Update_v.3.6.7-beta-v1.3
> update API
* Fixed mediaList won't update
* added .env disqus shortname
* Update_v3.6.7-beta-v1.4
>Implementing database
* Create main.yml
* Update v3.6.7-beta-v1.5
small patch
* title home page
* Update content.js
* Delete db-test.js
* Update content.js
* Update home page card
* Update v3.7.0
* Update v3.7.1-beta
> migrating backend to main code
> fixed schedule component
* Update v3.8.0
> Added dub options
> Moved schedule backend
* Update v.3.8.1
> Fixed episodes on watch page isn't dubbed
* Update v3.8.1-patch-1
* Update v3.8.1-patch-2
> Another patch for dub
* Update v3.8.2
> Removed prisma configuration for database since it's not stable yet
* Update v3.8.3
> Fixed different provider have same id
* Update v.3.8.3
> Fixed player bug where the controls won't hide after updating anilist progress
* Update v3.8.4-patch-2
* Update v3.8.5
> Update readme.md
> Update .env.example
* Update next.config.js
* small adjusment info page
* Update v3.8.6
> Minor update for Android 13 user
* Update v3.8.7
> Added prev and next button to mediaSession
* Update v3.8.7-beta-v2
* Beta v2 (#37)
* Update schema.prisma
* Update schema.prisma
* Update schema.prisma
* Update 3.9.0-beta-v2.1
> Implemented database for storing user Watch List and settings
> Added buttons to auto-play next episodes
* Update v3.9.0-beta-v2.2
* Update README.md
---------
Co-authored-by: Chitraksh Maheshwari <[email protected]>
Diffstat (limited to 'styles/globals.css')
| -rw-r--r-- | styles/globals.css | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/styles/globals.css b/styles/globals.css index 8063105..7e26486 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -358,3 +358,43 @@ pre code { opacity: 0; } } + +/* .skip-button { + @apply bg-white xs:w-28 xs:h-9 w-24 h-7 -top-12 right-[2%] rounded-md font-karla shadow-xl hover:bg-[#f1f1f1] text-black absolute xs:text-[15px] text-xs md:text-sm; +} */ + +.vid-con { + @apply h-full absolute -top-12 right-[2%]; +} + +.next-button { + position: relative; + @apply xs:w-28 xs:h-9 w-24 h-7 rounded-md font-karla shadow-xl text-black xs:text-[15px] text-xs md:text-sm flex-center hover:bg-[#b9b9b9]; + background: #ffffff; + border-radius: 6px; + cursor: pointer; + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + overflow: hidden; +} + +.next-button::before { + content: ""; + position: absolute; + top: 0; + left: -100%; + height: 100%; + width: 100%; + background: rgba(0, 0, 0, 0.2); + border-radius: 6px; +} +.next-button.progress::before { + animation: progress 7s ease forwards; +} +@keyframes progress { + 0% { + left: -100%; + } + 100% { + left: 0%; + } +} |