├── README.md ├── LICENSE └── youtube-controls.user.css /README.md: -------------------------------------------------------------------------------- 1 | # youtube-style 2 | YouTube controls below screen 3 | 4 | [![Install directly with Stylus](https://img.shields.io/badge/Install%20directly%20with-Stylus-00adad.svg)](https://raw.githubusercontent.com/skyme5/youtube-style/main/youtube-controls.user.css) 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Aakash Gajjar 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /youtube-controls.user.css: -------------------------------------------------------------------------------- 1 | /* ==UserStyle== 2 | @name YouTube Controls Below Video 3 | @namespace skyme5 4 | @version 1.0.2 5 | @license MIT 6 | @description Move video controls below video screen 7 | @author skyme5 (https://github.com/skyme5/youtube-style) 8 | @homepageURL https://github.com/skyme5/youtube-style 9 | @supportURL https://github.com/skyme5/youtube-style 10 | @updateURL https://raw.githubusercontent.com/skyme5/youtube-style/main/youtube-controls.user.css 11 | @preprocessor default 12 | ==/UserStyle== */ 13 | 14 | @-moz-document domain(youtube.com) { 15 | ytd-video-masthead-ad-v3-renderer, 16 | ytd-player-legacy-desktop-watch-ads-renderer { 17 | display: none !important; 18 | } 19 | 20 | ytd-watch-flexy #columns #info:nth-child(5), 21 | ytd-watch-flexy[theater] #columns #secondary { 22 | margin-top: 50px; 23 | } 24 | 25 | .html5-video-player { 26 | overflow: visible !important; 27 | } 28 | 29 | .ytp-chrome-bottom { 30 | top: 100%; 31 | opacity: 1 !important; 32 | } 33 | 34 | .ytp-chrome-controls { 35 | opacity: 1 !important; 36 | } 37 | 38 | ytd-watch-flexy[fullscreen] #columns #info:nth-child(5), 39 | ytd-watch-flexy[fullscreen] #columns #secondary { 40 | margin-top: unset; 41 | } 42 | 43 | ytd-watch-flexy[fullscreen] .ytp-chrome-bottom { 44 | top: unset; 45 | opacity: unset; 46 | } 47 | } 48 | --------------------------------------------------------------------------------