Leaderboard

Popular Content

Showing content with the highest reputation on 09/27/2017 in all areas

  1. New version of my skin for Maxthon Browser support latest version 5.3.8.500 Please use windows explorer to copy and replace this two files in folder location c:\Program Files (x86)\Maxthon5\Bin\ UIHuge.dat UIMain.dat ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- Changes: - removed some usless things from menu - simple address box - access to menu from user picture (small arrow) - favourites button in right side - some other small changes --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    1 point
  2. You're welcome, I'm glad I was able to help. Actually you don't need media query starts with "@media..", you can only use inner style code. If you want to use your style in different devices, then update it like below. You may need to adjust scale amounts for each resolution. @media screen and (device-aspect-ratio: 3440/1440) { .html5-video-player.ytp-fullscreen video { -webkit-transform: scale(1.345) !important; } } @media screen and (device-aspect-ratio: 1920/1080) { .html5-video-player.ytp-fullscreen video { -webkit-transform: scale(1.333) !important; } } @media screen and (device-aspect-ratio: 1024/768) { .html5-video-player.ytp-fullscreen video { -webkit-transform: scale(1) !important; } }
    1 point
  3. OMG! Thank you SO much! I had no idea an extension as awesome as Stylish even existed! I had to tweak your code a bit, but I made it work. The original script did nothing, so I did dome digging. First stop was my screen aspect ratio. Apparently, 21:9 was not actually it (my resolution is 3440:1440) so I just put that instead of "21/9" for the script to detect it. Then I removed the "X" from "scaleX", because it was just stretching the video horizontally leaving bars on top and bottom. "Scale" command, on the other hand, stretched the video on both axes - X and Y. And the last thing I did is I changed the scale amount to 1.345, because that's the exact zooming that gets you a fullscreen experience with my resolution. Dude, you f*n rock! Thank you so much for your help!
    1 point